BottomNavigationView doesn\'t show menu\'s title that are inactive.
How to show titles of all menu elements in bottomNavigationBar? The problem is that in my case s
For updated answer using the default. Update to latest design library
implementation "com.android.support:design:28.0.0"
and put to your BottomNavigationView xml attributes
app:itemHorizontalTranslationEnabled="false"
you can put it also as programmatically
bottomNavigationView.setItemHorizontalTranslationEnabled(false);
You can find source here BottomNavigationView
Hope this helps you.