Android BottomNavigationView未选择的文本不显示

Sea*_*ean 2 android bottomnavigationview

我正在使用android.support.design.widget.BottomNavigationView。除未选择时不显示标题外,其他都很好。

在此处输入图片说明

<!-- layout -->
<android.support.design.widget.BottomNavigationView
    android:id="@+id/bnvBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:background="@android:color/background_light"
    android:theme="@style/BottomNavigationTheme"
    app:menu="@menu/bottom_navigation_main" />

<!-- theme -->
<style name="BottomNavigationTheme" parent="Theme.AppCompat.Light">
    <item name="colorPrimary">@color/orange</item>
</style>
Run Code Online (Sandbox Code Playgroud)

缺什么?

Sai*_*man 13

如果您使用的是支持库28尝试此操作,

app:labelVisibilityMode="labeled"
Run Code Online (Sandbox Code Playgroud)