我在我的应用程序中使用底部应用程序栏作为导航组件。当单击导航抽屉的一项(从底部出现)时,导航抽屉应该关闭,但事实并非如此。当点击 Navigation Drawer 的导航项时,相关的 Fragment 被打开,但 Navigation Drawer(底部应用栏)仍然出现。
我曾尝试使用 DrawerLayout 和 drawerLayout.closeDrawer(Gravity.LEFT) 但它不起作用。
这是布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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:id="@+id/drawerView"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.drawerlayout.widget.DrawerLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/drawerLayout"
tools:openDrawer="left">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.navigation.NavigationView
android:id="@+id/navigation_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:headerLayout="@layout/nav_header_layout"
app:menu="@menu/bottom_nav_drawer_menu" >
</com.google.android.material.navigation.NavigationView>
</RelativeLayout>
</androidx.drawerlayout.widget.DrawerLayout>
</RelativeLayout>
这是 IDE 给出错误的代码部分:
navigation_view.setNavigationItemSelectedListener {
drawerLayout.closeDrawer(Gravity.LEFT)
...
return@setNavigationItemSelectedListener true
}
出现以下错误:
java.lang.IllegalArgumentException:没有找到重力左侧的抽屉视图
我已经尝试了以下链接中的解决方案,但它们不起作用: