我正在WebView中加载http://www.google.com
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";);
答案 0 :(得分: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" />