Android Change Navigation Drawer Menu Items Text programmatically

前端 未结 5 1385
暗喜
暗喜 2021-01-30 20:33

I have the new Navigation Drawer in my app and I want to change the navigation view menu items title text dynamically from code. I have watched many posts but I can\'t figure ou

5条回答
  •  执笔经年
    2021-01-30 21:24

    If you have a layout in navigation drawer menu as an item and you want to change it programmatically, this code snippet will help you:

    MenuItem nav = navigationView.getMenu().findItem(R.id.nav_close_app);
    nav.setActionView(R.layout.item_navigationdrawer_close_app);
    

提交回复
热议问题