本文主要是介绍android 9.0 webview显示空白页面,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"
><include layout="@layout/top_main_web"/><WebViewandroid:id="@+id/webview"android:layout_width="match_parent"android:layout_height="match_parent"/>
</LinearLayout>
大家在代码和配置文件都写正确的情况下,可以考虑一下布局的问题,如上没有设置方向就导致不能正常显示网页
android:orientation="vertical" 加上就好了。可以看看布局是否正确
这篇关于android 9.0 webview显示空白页面的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!