为什么我的导航抽屉宽度比其他宽度小?

时间:2017-01-13 17:32:58

标签: android android-layout navigation-drawer

我已经阅读了数千篇文章和其他stackoverflow问题,但我真的不明白为什么我的导航抽屉比其他应用程序抽屉小。

这是我的导航抽屉,遵循Google指南: My Navigation Drawer

我希望它是这样的: Other Navigation Drawers

(请注意Google云端硬盘中的抽屉如何涵盖FAB的很大一部分)

硬编码android:maxWidth="320dp"(对于手机和平板电脑)我可以做到这一点: My Navigation Drawer with hardcoded maxWidth

这几乎是我想要的,但它不符合谷歌的指导方针,而且它仍然比其他导航抽屉小一点。

除了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" />

我应该更改什么才能使其成为其他导航抽屉?

0 个答案:

没有答案