6

The last version of WhatsApp does what I'm talking about. When you scroll between tabs the toolbar shows different menu options. I can implement ViewPager with adapter and fragments but not this. How could it be done? I really don't know what kind of trick is behind. It changes everytime you switch pages

user3290180
  • 4,260
  • 9
  • 42
  • 77

1 Answers1

23

In each Fragment you have to override onCreateOptionsMenu, with different menu/menu.xml files

@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
    menu.clear();
    inflater.inflate(R.menu.menu, menu);
    super.onCreateOptionsMenu(menu, inflater);
}

Don't forget to call setHasOptionsMenu(true);, in onCreate of your Fragment

Blackbelt
  • 156,034
  • 29
  • 297
  • 305