导航视图在第一个菜单之前有更多差距

时间:2016-03-07 09:04:02

标签: android android-layout navigation-drawer android-navigationview

我创建了导航抽屉。我试图在工具栏下面创建抽屉和导航视图。但它在导航视图的第一个菜单之前显示了更多的差距。我想减少这个差距。对此有何解决方案?

enter image description here

布局主要:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    android:fitsSystemWindows="true"
    android:orientation="vertical">

    <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"/>

    <android.support.v4.widget.DrawerLayout
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/nav_drawer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true">


    <!-- Real content goes here -->
        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/nav_contentframe"
            android:background="@android:color/background_light"
            android:layout_below="@+id/toolbar"/>

        <!-- The navigation drawer -->
        <android.support.design.widget.NavigationView
            android:id="@+id/nav_view"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            android:fitsSystemWindows="false"
            app:menu="@menu/nav_menu"
            android:background="@android:color/background_light"
            android:gravity="top"
            android:foregroundGravity="top"
            android:weightSum="0" />


    </android.support.v4.widget.DrawerLayout>
</LinearLayout>

如何解决这个问题?

谢谢。

2 个答案:

答案 0 :(得分:3)

尝试将-PaddingTopValue添加到NavigationMenuView,而不是添加到navigationView。

        navigationView = (NavigationView) findViewById(R.id.nav_view);
//        navigationView.setPadding(0, -10, 0, 0); // not work
        ((NavigationMenuView)navigationView.getChildAt(0)).setPadding(0, -10, 0, 0);

答案 1 :(得分:0)

使用“导航”视图的标题属性并设置标题的布局。现在您可以在标题布局中自行调整。