Android Webview Zoom Control

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

Answers (1)

Zeeshan Ahmed
Zeeshan Ahmed

Reputation: 1187

Simple, by using webView object,

webView.getSettings().setBuiltInZoomControls(true);

Upvotes: 1

Related Questions