我试图在一个片段中实现一个Drawer Layout,但是,如果我使用“ android:layout_gravity =“ start”,那么我的导航按钮就消失了。如果将其放在活动中,相同的代码也可以正常工作。 而且,如果我尝试向右滑动,它也将不起作用(您可以在发布的图像中看到它)。对我来说,我好像无法向右滑动,因此无法打开导航视图?
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="200dp"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.design.widget.NavigationView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
app:menu="@menu/bottom_navigation">
/>
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:0)
通过查看this gist,您应该将.csv
添加到android:fitsSystemWindows="true"
并将其宽度设置为DrawerLayout
。我的猜测是,应该是match_parent
子级,可以具有定义的宽度。