I have the following code (quite simple):
WebSettings webSettings = webView.getSettings();
webSettings.setTextZoom(110);
While running on Android 4.0, all is right. However, both Android 2.2 and Android 2.3.3 throw a "no such method" excepcion when trying to run setTextZoom (the same happens with getTextZoom). I know the previous setTextSize method is now deprecated but I found no info about whether setTextZoom existed back then. I know that my minSdkVersion is 8 and my target is 9 and Eclipse doesn't complain about setTextZoom.
While I could use setTextSize (now deprecated) I find NORMAL size too small and LARGE too big.
Any help is appreciated, thanks for your time!