Android Webview initial zoom out

前端 未结 6 905
失恋的感觉
失恋的感觉 2021-02-07 00:58

I\'m using a webview in my android app, at the moment when the app is started the website is zoomed in quite a lot, i want it to be zoomed out to fit the width of the screen. I

6条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-07 01:06

        //This the the enabling of the zoom controls 
        webView.getSettings().setBuiltInZoomControls(true);
    
        //This will zoom out the WebView
        webView.getSettings().setUseWideViewPort(true);
        webView.getSettings().setLoadWithOverviewMode(true);
        webView.setInitialScale(1);
    

提交回复
热议问题