CoordinatorLayout +抽屉+工具栏+ TabLayout + bottomnavigationview

问题描述

我在隐藏底部工具栏时遇到问题,我在抽屉中有home_activity。

<?xml version="1.0" encoding="utf-8"?>
<io.mediaworks.android.ui.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".controllers.HomeActivity">

    <include
        android:id="@+id/appbardrawer"
        layout="@layout/main_base"
         />


    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/left_drawer"
        style="@style/drawer"
        android:layout_gravity="start" />

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/right_drawer"
        style="@style/drawer"
        android:layout_gravity="end" />

</io.mediaworks.android.ui.DrawerLayout>

main_base.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <include layout="@layout/toolbar_item"/>

    <FrameLayout
        android:id="@+id/container"
        app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</androidx.coordinatorlayout.widget.CoordinatorLayout>

toolbar_item.xml

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.appbar.AppBarLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        app:titleTextColor="@color/drawerBackground"
        android:layout_height="?attr/actionBarSize"
        app:layout_scrollFlags="scroll|enteralways|snap">

        <androidx.appcompat.widget.AppCompatimageView
            android:id="@+id/toolbarlogo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:visibility="gone"
            />

        <include
            android:id="@+id/toolbarCenterlogo"
            android:visibility="gone"
            layout="@layout/actionbar_center_logo"/>
        
    </androidx.appcompat.widget.Toolbar>

</com.google.android.material.appbar.AppBarLayout>

在main_base容器中,我在viewpager中显示片段(网络视图)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <com.google.android.material.appbar.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <com.google.android.material.tabs.TabLayout
            android:id="@+id/tabs"
            style="@style/TabLayoutStyle" />

    </com.google.android.material.appbar.AppBarLayout>

    <androidx.viewpager.widget.ViewPager
        android:id="@+id/page_container"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        />

</LinearLayout>

一切正常,如您在这里看到的https://www.youtube.com/watch?v=vBKxMXDgTNw

但是当我想在容器底部导航时显示此片段

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">


    <androidx.viewpager2.widget.ViewPager2
        android:id="@+id/page_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
    />

    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/bottom_navigation"
        android:layout_gravity="bottom"
        style="@style/bottom_navigation" />

</LinearLayout>

底部导航也隐藏,正如您在此处看到的那样,我要实现的目标是固定底部,而仅隐藏顶部工具栏。谢谢。 https://www.youtube.com/watch?v=W8vDxDIhbvY

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...