Reputation: 9
I want to control android webview zoom in, zoom out using seekbar just like pinchzoom. How can I do that? Webview text zooming control is given from API level 14. But I have to support it from lower API level(8).
Upvotes: 0
Views: 602
Reputation: 1187
Simple, by using webView object,
webView.getSettings().setBuiltInZoomControls(true);
Upvotes: 1