When a user clicks in an input field or textarea, the application zooms in. Is there a simple way to disable it?
Currently have the meta tag:
meta name=\
I found the answer, at least for me. It works on HTC desire and Sansung 3 low res.
Remove the viewport meta tags from the HTML.
In java apply the solution that can be found here.
this.appView.getSettings().setSupportZoom( true ); //Modify this
this.appView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.FAR);//Add this
Remember to test if WebSettings.ZoomDensity.FAR is available to your SDK version (7 and above).