Page location in WebViewer Android

0

Someone knows how to tell me if I have a Web page position at the time of starting the App that has a WebViewer, example when opening the page it initially shows in the middle.

    
asked by anonymous 22.09.2018 / 19:57

1 answer

0

Try the following code:

WebView webView = (WebView) findViewById(R.id.myWebView); 
webView.getSettings().setDefaultZoom(ZoomDensity.FAR);

I've picked up the following topic: link

    
22.09.2018 / 20:02