我正在使用 BottomNavigationView 对我的应用实施底部导航(我在下面提供了屏幕截图)。有人可以帮助我如何删除每个底部导航栏中每个图标下方的标题吗?我只需要没有标题的图标,就像Instagram中的图标一样。我确实尝试将标题更改为“”(空字符串)。但是,图标未居中。每个图标下方仍存在空白
activity_main.xml
<RelativeLayout
android:id="@+id/bottomAction"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_alignParentBottom="true">
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottomNavView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/white_grey_top_border"
app:menu="@menu/bottom_navigation_menu">
</android.support.design.widget.BottomNavigationView>
</RelativeLayout>
bottom_navigation_menu.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/ic_home"
android:icon="@drawable/ic_recent_24dp"
android:title="Recents">
</item>
<item
android:id="@+id/ic_search"
android:icon="@drawable/ic_like_24dp"
android:title="Favorites"
>
</item>
<item
android:id="@+id/ic_upload"
android:icon="@drawable/ic_near_24dp"
android:title="Nearby">
</item>