1

我正在http://www.google.comWebView 中加载 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";);

4

1 回答 1

2

您需要更改用户代理以使其不加载移动网站。


尝试这个

<WebView android:id="@+id/webView1" android:layout_width="fill_parent" 
android:layout_height="fill_parent" android:layout_alignParentBottom="true" 
android:layout_below="@+id/button1" android:layout_centerHorizontal="true" />
于 2012-08-21T16:02:23.580 回答