Android studio2022.3项目,X5内核WebView页面,顶部栏不显示问题

顶部栏组件和WebView都位于Fragment页面中,顶部栏不显示可能是由布局类型导致,可以使用LinearLayout类型布局

XML 复制代码
<?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"
    android:orientation="vertical">

    <!-- 设置Toolbar -->
    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:elevation="4dp"/>

    <!-- 设置WebView -->
    <com.tencent.smtt.sdk.WebView
        android:id="@+id/web_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>
相关推荐
沐怡旸2 小时前
【底层机制】垃圾回收(GC)底层原理深度解析
android·面试
whatever who cares3 小时前
android/java中gson的用法
android·java·开发语言
用户0273851840263 小时前
【Android】活动的正/异常生命周期和启动模式、标志位详解
android
nono牛4 小时前
MTK平台详解`adb devices`输出的序列号组成
android·linux·adb·智能手机
zhangphil4 小时前
Android通过SQL查询trace分析进程启动线程总数量
android
下位子5 小时前
『OpenGL学习滤镜相机』- Day3: 着色器基础 - GLSL 语言
android·opengl
bqliang5 小时前
Jetpack Navigation 3:领航未来
android·android studio·android jetpack
云存储小天使5 小时前
安卓蛙、苹果蛙为什么难互通?
android
陈大头铃儿响叮当7 小时前
Android Studio升级后,Flutter运行android设备报错
android·flutter·android studio
勤劳打代码7 小时前
isar_flutter_libs 引发 Namespace not specified
android·flutter·groovy