5

I want to alight icon and label of BottomNavigationView align horizontally. Something like this enter image description here

Default orientation is given as

enter image description here

Should I make custom layout for menu items or is there any simple way?

musooff
  • 6,412
  • 3
  • 36
  • 65

1 Answers1

5

You can use this library to get bottom navigation bar with chips component.

buildscript {
    ...
    repositories {
        jcenter()
        ...
    }
dependencies {
implementation 'com.ismaeldivita.chipnavigation:chip-navigation-bar:1.0.0'
}

Gowtham K K
  • 3,123
  • 1
  • 11
  • 29