foffa
foffa

Reputation: 43

using pinch in the webview android

I have two questions:

Upvotes: 1

Views: 1544

Answers (2)

chamikaw
chamikaw

Reputation: 436

You can enable zooming in a WebView by following WebView setting

mWebView.getSettings().setBuiltInZoomControls(true);

Also you can set the default zoom level by using ZoomDensity

mWebView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.CLOSE);

Upvotes: 2

Bart van den Berg
Bart van den Berg

Reputation: 11

Have you added the referencing library of Nikko? http://code.google.com/p/android-pinch/wiki/PinchImageView

Upvotes: 1

Related Questions