我的 WebView 有问题。基本上我有一个 WebView 并且想要显示位于我设备的资产文件夹中的 html。
如果我使用 WebView 启动 Activity,它将显示资产文件的内容,但如果我锁定屏幕(短按电源按钮)并返回应用程序,则不会显示 WebView 的内容。真正奇怪的部分是,一旦我单击 Activity 中的某些内容,WebView 就会显示内容。
有没有人遇到过类似的 Webviews 问题?
代码:
在我的 Activity 的 onResume 方法中,我将数据加载到 WebView
webView.loadUrl( webViewUrl );
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_below="@id/nameWrapper"
android:layout_above="@id/buttonWrapper">
<WebView
android:id="@+id/description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/transparent"
android:textColor="@color/black"/>
</ScrollView>