如何将BottomNavigationBar设置为菜单项之间相等的间距?

时间:2018-12-20 14:29:49

标签: android android-layout material-design

我有一个带有横向模式下的BottomNavigationBar的android应用,其中包含四个菜单项。这些项目在中间像这样堆在一起:

bunched items

我想让它们均匀分布在导航栏中,如下所示:

evenly spaced items

如何完成这种格式化?

上面的示例图片来自material.io文档

我的xml:

<android.support.design.widget.BottomNavigationView
    android:id="@+id/navigation"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginEnd="0dp"
    android:layout_marginStart="0dp"
    android:background="?android:attr/windowBackground"
    android:layout_alignParentBottom="true"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:menu="@menu/navigation"
    app:labelVisibilityMode="labeled" />

我希望我的图标散布在整个栏中,包括用红色注释的空间:

enter image description here

2 个答案:

答案 0 :(得分:0)

为此BottomNavigationView设置此属性:

app:labelVisibilityMode="labeled"

答案 1 :(得分:0)

你必须使用

 android:fitsSystemWindows="true"