Reputation: 49
Can anyone tell me how to change the whole Action Bar menu to appropriate fragment in navigation drawer?
My code:
public void onCreateOptionsMenu(Menu menu,MenuInflater menuInflater)
{
super.onCreateOptionsMenu(menu,menuInflater);
menu.clear();
menuInflater.inflate(R.menu.menu_history,menu);
}
Upvotes: 0
Views: 74
Reputation: 49
setHasOptionsMenu(true);
this method should be placed in onCreateView override method in fragment and
this.invalidateOptionsMenu()
this method shoulde be placed NavigationDrawerActivity when you create the fragment object.
Upvotes: 0
Reputation: 1090
Use
setHasOptionsMenu(true);
in onCreateView of your fragment.
Upvotes: 2