0

我想从导航栏到屏幕底部删除多余的空间。

如下所示:

在此处输入图像描述

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>

我检查了问题不是来自导航栏的自定义背景(我用一些简单的颜色检查了它,我得到了相同的结果)

关于为什么会发生这种情况以及如何防止它发生的任何想法?

4

2 回答 2

0

为什么你的导航背景是圆形的?

您是否将 main_color_background用于圆形背景?

删除使它成为圆形的背景,然后再试一次。可能是您在那些背景中添加了一些填充/边距,它们留下了空间。

于 2019-05-04T20:33:02.423 回答
0

所以这是一个有趣的解决方案:

在我的手机中,(galaxy j7 pro-2017)默认情况下,每个应用程序周围都有某种黑色细框,嗯,一切。

所以我从来没有遇到过问题,这只是手机的制造方式。

于 2019-05-07T16:07:06.760 回答