android - Disable zoom when user press input -


How to disable zoom when pressing input in the webview? Subscribe the following line, but it still increases when entering a password

  mWebView.getSettings (). SetDefaultZoom (WebSettings.ZoomDensity.CLOSE); // This is my code mWebView.getSettings (). SetLoadsImagesAutomatically (wrong); . MWebView.getSettings () setLoadWithOverviewMode (wrong); . MWebView.getSettings () setUseWideViewPort (false); MWebView.setWebViewClient (new hellowebviewclient); . MWebView.getSettings () setBuiltInZoomControls (wrong); . MWebView.getSettings () setSupportZoom (wrong); MWebView.getSettings () setDefaultZoom (WebSettings.ZoomDensity.CLOSE). MWebView.setInitialScale (180);  


Comments

Popular posts from this blog

java - Can't add JTree to JPanel of a JInternalFrame -

javascript - data.match(var) not working it seems -

javascript - How can I pause a jQuery .each() loop, while waiting for user input? -