我已经阅读了数千篇文章和其他stackoverflow问题,但我真的不明白为什么我的导航抽屉比其他应用程序抽屉小。
(请注意Google云端硬盘中的抽屉如何涵盖FAB的很大一部分)
硬编码android:maxWidth="320dp"
(对于手机和平板电脑)我可以做到这一点:
这几乎是我想要的,但它不符合谷歌的指导方针,而且它仍然比其他导航抽屉小一点。
除了FAB之外,您还可以通过查看状态栏来注意区别。
这是我的主屏幕:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- My content -->
</LinearLayout>
<include layout="@layout/drawer"/>
</android.support.v4.widget.DrawerLayout>
我的NavigationView布局:
<android.support.design.widget.NavigationView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/drawer"
app:itemTextColor="@drawable/color_selector_drawer_text"
app:itemIconTint="@drawable/color_selector_drawer_icon" />
我应该更改什么才能使其成为其他导航抽屉?