WebView找不到网页,显示空白页问题解决
Posted 两三点,雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WebView找不到网页,显示空白页问题解决相关的知识,希望对你有一定的参考价值。
一、找不到网页
androidManifest.xml中的android:name="android.permission.INTERNET" />?权限写成大写的了
二、显示空白页
?android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/web_view"
改成
?android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/web_view"
android:layout_x="0.0dip"
android:layout_y="0.0dip"
android:layout_weight="1.0">
以上是关于WebView找不到网页,显示空白页问题解决的主要内容,如果未能解决你的问题,请参考以下文章