在我的应用中有底部导航栏,我想添加导航抽屉,因为在底部导航栏上有很多按钮不适合使用。 我尝试了很多方法,但是不幸的是,它们都没有起作用 这是我的底部导航栏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"
android:background="@color/colorAccent2"
tools:context=".UI.HomeActivity"
tools:layout_editor_absoluteY="81dp">
<FrameLayout
android:id="@+id/frame1"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="8dp"
android:layout_marginTop="5dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="0dp"
app:layout_constraintBottom_toTopOf="@+id/navigationView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_chainStyle="spread_inside">
</FrameLayout>
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/navigationView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="#fcff38"
app:itemIconTint="#000000"
app:itemTextColor="#303132"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/frame1"
app:menu="@menu/menu" />
</androidx.constraintlayout.widget.ConstraintLayout>
任何答案都可以帮助您, 谢谢。
答案 0 :(得分:0)
您需要在布局中添加“ NavigationView”类,还将根视图组包装在DrawerLayout中。
<androidx.drawerlayout.widget.DrawerLayout>
<androidx.constraintlayout.widget.ConstraintLayout>
<FrameLayout
...
</FrameLayout>
<com.google.android.material.bottomnavigation.BottomNavigationView/>
</androidx.constraintlayout.widget.ConstraintLayout>
<com.google.android.material.navigation.NavigationView />
</androidx.drawerlayout.widget.DrawerLayout>
这篇文章将为您提供帮助:NavigationView