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>
相关推荐
一笑的小酒馆6 小时前
Android中WebRTC通信
android
KevinWang_8 小时前
Android Hilt 依赖注入
android
古法安卓9 小时前
Android-深入理解 Android 回调(Callback)机制
android·性能优化·android studio
古法安卓9 小时前
Android-车机 GNSS 定位数据接收问题排查
android·java·android studio
FungLeo11 小时前
Flutter 吸顶分组列表实战:语义桶分组 + 点击头平滑滚动
android·flutter
阿巴斯甜11 小时前
Android 自定义权限
android
FungLeo12 小时前
Flutter 超长 StatefulWidget 拆分术:part of + extension on State 实战
android·flutter·dart
小王C语言13 小时前
MySQL 数据类型:数值类型、字符串类型、日期和时间类型、enum 和 set、find_in_set 查询
android·数据库·mysql
我命由我1234513 小时前
Android 控件 - CardView(快速实现圆角)
android·java·java-ee·kotlin·android studio·android-studio·android runtime
码云数智-园园14 小时前
Android 全方位性能优化合集
android·性能优化