我正在http://www.google.com
WebView 中加载 url。但是,即使我从设备/模拟器加载它,webview 的内容也不会根据设备尺寸进行调整。
如果您看到,Google 页面没有根据 WebVie 的尺寸正确设置。但是,如果我在具有相同尺寸的模拟器浏览器中打开相同的 url,那么它会通过缩放等正确加载。
如何在 Android 的 WebView 上正确加载 webview?
这是 WebView 布局的 XML
<WebView android:id="@+id/webView1" android:layout_width="300dp" android:layout_height="300dp" android:layout_alignParentBottom="true" android:layout_below="@+id/button1" android:layout_centerHorizontal="true" />
MainActivity.java 文件
WebView web_view =(WebView)findViewById(R.id.webView1); web_view.getSettings().setLoadWithOverviewMode(true); web_view.getSettings().setUseWideViewPort(true); web_view.loadUrl("google.com";);