raja
raja

Reputation: 2413

Fit to scale in webview , android 4.0.3

I have used webview.setInitialScale(1) for nexus ,mdpi and ldpi devices and its working fine .Its fit to scale initially and not allowing zoom in by either double tap or pinch in buts its not working in vernet tablet(android 4.0.3).Can anyone help me .

Upvotes: 1

Views: 718

Answers (1)

Sudarshan Bhat
Sudarshan Bhat

Reputation: 3772

Try this -

webView.getSettings().setSupportZoom(false);

I hope it works.

Upvotes: 1

Related Questions