为什么不活动时BottomNavigationBar的文本不显示[XML]

时间:2019-04-04 11:48:52

标签: android xml

现在:https://i.stack.imgur.com/lgdaa.png

我有一个底部导航栏。案例:选项卡处于非活动状态时,底部导航栏的文本未显示。仅在选项卡处于活动状态时才显示文本。 每当显示文本时该怎么办?

<android.support.design.widget.BottomNavigationView
            android:id="@+id/navigation"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:background="?android:attr/windowBackground"
            android:theme="@style/BottomNavigationTheme"
            app:menu="@menu/menu"/>

样式:

    <style name="BottomNavigationTheme" parent="Theme.AppCompat.Light">
        <item name="colorPrimary">@color/tabActive</item>
        <item name="android:textColorSecondary">@color/tabInactive</item>
    </style>

2 个答案:

答案 0 :(得分:2)

documentation中,您可以看到:

LABEL_VISIBILITY_AUTO 3个或更少项目时,标签的行为为“已标记”;如果4个或更多项目,则标签的行为为“选定”。

在屏幕快照中,您具有4个标签,因此继承的可见性为 LABEL_VISIBILITY_SELECTED

您需要将可见性模式设置为已标记。直接通过XML进行操作:

<android.support.design.widget.BottomNavigationView
            android:id="@+id/navigation"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:background="?android:attr/windowBackground"
            android:theme="@style/BottomNavigationTheme"
            app:labelVisibilityMode="labeled"
            app:menu="@menu/menu"/>

答案 1 :(得分:1)

这是您要寻找的方法。

或者在XML中,app:labelVisibilityMode =“ labeled”

希望这对您有帮助