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
You can delete the second item of listview via following code:
navDrawerItems.remove(2); ((BaseAdapter)adapter).notifyDataSetChanged();