Deepankumar
Deepankumar

Reputation: 67

How to align bottom navigation bar icon center without text?

In my app, using bottom navigation bar. Inside bottom navigation bar,text not needed. so i put android:title="" but that icon always in top. how to set center? This is Mine
I need this type

Upvotes: 0

Views: 6259

Answers (1)

Praneeth
Praneeth

Reputation: 637

You can add the app:labelVisibilityMode attribute to BottomNavigationView like below. Then it automatically center positions the icons.

<android.support.design.widget.BottomNavigationView
...
app:labelVisibilityMode="unlabeled"
/>

Reference: https://developer.android.com/reference/com/google/android/material/bottomnavigation/LabelVisibilityMode

Upvotes: 6

Related Questions