How to Set selected item in BottomNavigationView

前端 未结 12 1846
半阙折子戏
半阙折子戏 2020-12-25 11:48

I am trying to set default item on activity created but it isn\'t working? This is my code:

protected void onCreate(Bundle savedInstanceState) {
    super.o         


        
12条回答
  •  情歌与酒
    2020-12-25 12:21

    Instead of selected you need to setChecked(true) that item. Try this code

    mBottomNavigationView=(BottomNavigationView)findViewById(R.id.bottom_nav);
    mBottomNavigationView.getMenu().findItem(R.id.item_id).setChecked(true);
    

    Checked item is highlighted in BottomNavigationView.

提交回复
热议问题