我目前正在创建一个应用程序,它有一个 BottomNavigationView 和一个 FrameLayout 用于片段。但是,如本视频所述,我也想实现 DrawerLayout 或 Hamburger Menu
DrawerLayout 应该只包含两个视图,一个用于 ActivityFragment,一个用于 NavigationView
那么是否可以在拥有 BottomNavigationView 的同时实现 DrawerLayout?如果是,如何?
这是我的 activity_main.xml:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<FrameLayout
android:id="@+id/framelayoutFragment"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/bottomNavigationView"
app:layout_constraintTop_toTopOf="parent" />
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottomNavigationView"
android:layout_width="match_parent"
android:layout_height="56dp"
app:backgroundTint="@color/colorSecondaryDark"
app:elevation="0dp"
app:itemIconTint="@drawable/selector"
app:itemTextColor="@drawable/selector"
app:labelVisibilityMode="selected"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:menu="@menu/menu_bottomnavgation" />
</androidx.constraintlayout.widget.ConstraintLayout>