Question

i want to load my web view as a overview mode(completely zoomed out). that is the webpage zoomed out completely at the initial state.

i coded like this:

webview_obj.getSettings().setLoadWithOverviewMode(true);

its not working. what is the mistake and how to rectify it?

Was it helpful?

Solution

I was just trying to figure that out myself. It seems that setting setUseWideViewPort in addition to setLoadWithOverviewMode fixes it.

webview_obj.getSettings().setUseWideViewPort(true);

This other question deals with the same thing. How to set the initial zoom/width for a webview

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top