我想从导航栏到屏幕底部删除多余的空间。
如下所示:
我BottomNavigationView
在它下面留了一些空间,我不知道为什么。
包含的布局BottomNavigationView
非常简单:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/layout"
tools:context=".NavBarActivity">
<FrameLayout
android:id="@+id/frame_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/menu"
android:background="@drawable/scroll_background"/>
<android.support.design.widget.BottomNavigationView
android:id="@+id/menu"
android:layout_width="match_parent"
android:layout_height="56dp"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:background="@drawable/main_color_background"
app:itemIconTint="@color/secondaryTextColor"
app:itemTextColor="@color/secondaryTextColor"
app:menu="@menu/nav_items" />
</RelativeLayout>
我检查了问题不是来自导航栏的自定义背景(我用一些简单的颜色检查了它,我得到了相同的结果)
关于为什么会发生这种情况以及如何防止它发生的任何想法?