Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

when user clicks on input controls like input text of text area, the webview zooms in by default,

Can we control this feature.

share|improve this question

1 Answer

Yes use it.You can set zoom on webview according to your requirement.

WebView webView=(WebView)this.findViewById(R.id.link4_view);
    webView.getSettings().setBuiltInZoomControls(true);
    webView.getSettings().setUseWideViewPort(true);
    webView.setInitialScale(50);
    webView.loadUrl("http://www.racquetime.com/terms");
            webView.zoomIn();

I Hope this is help.

share|improve this answer
thanks for the reply... but when I click on input control in webview, the view zooms in, I just want to avoid the zoom in feature here.... – param Jun 2 '11 at 12:29
is there any way to do so? – param Jun 3 '11 at 5:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.