我的WebView似乎总是全屏,不尊重布局。
此外,活动菜单不是我设置的菜单,而是浏览器。
如果网址是移动模式或stackoverflow.com中的www.google.com 它似乎工作正常!?!
但是,一旦您点击经典模式或移动/常规的任何其他网站,它就会占据整个屏幕。
使用loadData可以正常工作。
提前致谢!!
有什么想法吗?
迈克尔
我在2.1 android模拟器上测试。
代码段.........
setContentView(R.layout.mainactivity);
WebView webV = (WebView)findViewById(R.id.webview);
webV.setInitialScale(30);
webV.loadUrl(getString(R.string.app_url));
布局......
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent android:layout_height="fill_parent">
<TextView android:id="@+id/label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Type here:"/>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_below="@id/label"
/>
</RelativeLayout>
答案 0 :(得分:0)
这不是WebView的错;当在WebView
内单击链接时,默认行为是使用URL打开系统浏览器应用程序(请参阅WebView tutorial上的#6)。
这实际上是this SO question的副本;简短的回答是,您需要为WebView设置WebViewClient
并设置shouldOverrideUrlLoading
。