<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawerlayout" <!-- we will use this layout id in java for hide elevation -->
android:orientation="vertical"
android:focusableInTouchMode="true"
>
<com.google.android.material.navigation.NavigationView
android:background="@android:color/transparent" <!-- for transparent -->
android:layout_width="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
android:layout_height="match_parent">
<include layout="@layout/custom_nav_drawer" />
</com.google.android.material.navigation.NavigationView>
</androidx.drawerlayout.widget.DrawerLayout>
1条答案
按热度按时间aiazj4mn1#
视频示例:x1c 0d1x
如果你愿意,让你的
Navigation Drawer
完全Transparent
,然后使用这个。你可以在xml
中定制设计,然后在NavigationView
中定制设计。在我们
Activity
java
类中用于隐藏drawer
阴影/高程