I'm testing new Android's BottomNavigationView from support library. The default behavior when there are more than 3 buttons is to expand the selected one while shifting others and hiding their texts. I'm wondering, is there way to override this behavior and to distribute the buttons evenly with all the titles visible? Similar to when there are only 3 of them.
Asked
Active
Viewed 293 times
0
-
1That's agaist design guidelines, so I doubt such feature will be implemented in official library. – Marius Kaunietis Dec 22 '16 at 08:41
-
I understand that. But, unfortunately, my client wants it to look like ios one. – AlexKost Dec 22 '16 at 08:46
-
1I know that feeling. I suggest you use old tabLayout and set customView for each. That's exactly what I've done many times. – Marius Kaunietis Dec 22 '16 at 08:53
-
Thanks. I think it might be a quick solution. – AlexKost Dec 22 '16 at 09:33
-
1Possible duplicate of [How to disable BottomNavigationView shift mode?](http://stackoverflow.com/questions/40176244/how-to-disable-bottomnavigationview-shift-mode) – Ahmed Faisal Dec 22 '16 at 17:08
-
You could use another bottom bar, which displays all tabs completely always: https://github.com/roughike/BottomBar – 最白目 Feb 16 '17 at 07:53