As I liked the design from BottomNavigationView I decided to implement a new Menu for my App with it, instead of just using simple buttons.
BottomNavigationView
I took this
Try this, it worked for me
and set
bottomNavigationView.getMenu().findItem(R.id.uncheckedItem).setChecked(true);
you get all menu item view as unselected; since the selection is given for uncheckedItem which is invisible
uncheckedItem
Hope it helped you.