menu inflating calls multiple times at fragment's onCreateOptionsMenu
I use Fragments and when I switch to nested Fragment, which implements
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) my menu
inflates quantity of times when I get to that nested Fragment. How can I
avoid this? I also implement constructor of Fragment with methods:
setRetainInstance(true);
setHasOptionsMenu(true);
When I tried to implement siple solution as:
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
// TODO Add your menu entries here
if(!isInflated)
{
inflater.inflate(R.menu.contacts_archive_menu, menu);
isInflated = true;
}
super.onCreateOptionsMenu(menu, inflater);
}
but my menu wasn't inflate after the screen rotation.
No comments:
Post a Comment