Hide a Navigation Drawer Menu Item - Android

后端 未结 8 817
春和景丽
春和景丽 2021-01-30 06:31

I have a navigation drawer. When an event is called, I want to hide one of my navigation menu item for user. How can I do that?

protected void onCreate(Bundle sa         


        
8条回答
  •  情书的邮戳
    2021-01-30 06:47

    You can delete the second item of listview via following code:

    navDrawerItems.remove(2);
    ((BaseAdapter)adapter).notifyDataSetChanged();
    

提交回复
热议问题