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>
相关推荐
Propeller25 分钟前
【Android】View 交互的事件处理机制
android·java
吴Wu涛涛涛涛涛Tao26 分钟前
Flutter 实现「可拖拽评论面板 + 回复输入框 + @高亮」的完整方案
android·flutter·ios
雨声不在30 分钟前
使用android studio分析cpu开销
android·ide·android studio
程序leo源2 小时前
Linux_基础指令(二)
android·linux·运维·服务器·青少年编程
雨白4 小时前
Android 两种拖拽 API 详解:ViewDragHelper 和 OnDragListener 的原理与区别
android
元亓亓亓4 小时前
JavaWeb--day3--Ajax&Element&路由&打包部署
android·ajax·okhttp
居然是阿宋4 小时前
Android XML属性与Jetpack Compose的对应关系(控件基础属性篇)
android
GoatJun4 小时前
Android ScrollView嵌套RecyclerView 导致RecyclerView数据展示不全问题
android
潜龙95275 小时前
第6.2节 Android Agent开发<二>
android·python·覆盖率数据