WebView wrap-content

前端 未结 10 2460
我寻月下人不归
我寻月下人不归 2020-12-13 02:26

Is it possible to load a URL in a WebView and resize it to fit the screen? I mean I want to make the WebPage small so that the user doesn\'t need to scroll. Is this possible

10条回答
  •  感动是毒
    2020-12-13 02:57

    webview_settings.setLoadWithOverviewMode(true);
    webview_settings.setUseWideViewPort(true);
    webview_settings.setBuiltInZoomControls(true);
    

提交回复
热议问题