I have one activity with 3 fragments. I want to hide menu which is created in activity and show the fragment 2 alone.
I know how to hide menu which is created by other fragments. Is it possible to hide the Activity menu on fragments?
I have one activity with 3 fragments. I want to hide menu which is created in activity and show the fragment 2 alone.
I know how to hide menu which is created by other fragments. Is it possible to hide the Activity menu on fragments?
When you override onCreateOptionsMenu
you can clear the menu from there.
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
menu.clear();
inflater.inflate(R.menu.menu, menu);
super.onCreateOptionsMenu(menu, inflater);
}