欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

android 9.0 webview显示空白页面

程序员文章站 2022-03-03 11:55:12
<?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"/>
    <WebView
        android:id="@+id/webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
</LinearLayout>大家在代码和配置文件都写正确的情况下,可以考虑一下布局的问题,如上没有设置方向就导致不能正常显示网页  
android:orientation="vertical"  加上就好了。可以看看布局是否正确

本文地址:https://blog.csdn.net/u010231404/article/details/107163482