Cabezas
Cabezas

Reputation: 10717

How to have different MenuItem for different fragment inside same activity?

I have tabbar of fragment and I need MenuItem for each fragment.

enter image description here

if I show fragment1 have menuItem1, if I show fgrament2 have menuItem2. Any idea? I hope that somebody help me.

Upvotes: 1

Views: 44

Answers (1)

Akshay
Akshay

Reputation: 6142

Set Flags for each Fragment and according to the flag you can inflate the Menus you want with the help of onPrepareOptionsMenu(Menu menu) method,,

Upvotes: 1

Related Questions