导航视图在第一个菜单之前有更多间隙
Navigation view has more gap before first menu
我已经创建了导航抽屉。我试图在工具栏下方创建抽屉和导航视图。但它在导航视图的第一个菜单之前显示更多间隙。我想缩小这个差距。有什么解决办法吗?
主要布局:
<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>
如何解决?
谢谢。
尝试将 -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);
为导航视图使用 header 属性并为 header.Now 设置布局,您可以在 headerlayout 本身中相应地进行调整。
我已经创建了导航抽屉。我试图在工具栏下方创建抽屉和导航视图。但它在导航视图的第一个菜单之前显示更多间隙。我想缩小这个差距。有什么解决办法吗?
主要布局:
<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>
如何解决?
谢谢。
尝试将 -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);
为导航视图使用 header 属性并为 header.Now 设置布局,您可以在 headerlayout 本身中相应地进行调整。