0

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

Rob
  • 2,243
  • 4
  • 29
  • 40
Deepankumar
  • 57
  • 3
  • 11

1 Answers1

6

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

Praneeth
  • 627
  • 8
  • 11