如何使导航抽屉覆盖底部导航?

时间:2021-03-31 19:42:12

标签: android

enter image description here

<块引用>

这是我的 XML 文件:

<androidx.drawerlayout.widget.DrawerLayout 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/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">

<com.google.android.material.navigation.NavigationView
    android:id="@+id/nav_view"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    app:headerLayout="@layout/header"
    app:menu="@menu/topdots" />

<RelativeLayout xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/parent"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:focusable="true"
    android:focusableInTouchMode="true">

    <EditText
        android:id="@+id/search"
        android:layout_width="match_parent"
        android:layout_height="37dp"
        android:textColorHint="@android:color/darker_gray" />
</androidx.drawerlayout.widget.DrawerLayout>
<块引用>

这是活动代码:

 drawerLayout = view.findViewById(R.id.drawer_layout);
    navigationView = view.findViewById(R.id.nav_view);

    ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(getActivity(), drawerLayout, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
    drawerLayout.addDrawerListener(toggle);
    toggle.syncState();
<块引用>

正如所见,导航抽屉位于底部导航的后面。我怎样才能把它带到底部导航的前面?

0 个答案:

没有答案