Handling ActionBar title with the fragment back stack?

前端 未结 11 1465
挽巷
挽巷 2020-12-07 13:10

I have an Activity where I load in a ListFragment and, upon clicking, it drills down a level and a new type of ListFragment is shown,

11条回答
  •  攒了一身酷
    2020-12-07 13:42

    Use Fragments method:

    @Override
    public void onCreateOptionsMenu(Menu menu, MenuInflater inflater)
    

    It is called on every Fragment appearance, but onResume is not.

提交回复
热议问题