menu inflating calls multiple times at fragment's onCreateOptionsMenu

前端 未结 3 555
逝去的感伤
逝去的感伤 2021-02-13 01:54

I use Fragments and when I switch to nested Fragment, which implements public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) my menu inflates quantity o

相关标签:
3条回答
  • 2021-02-13 02:36

    I solved it simply by clearing menu before ionflating of it:

         @Override
         public void   onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
              menu.clear();
              inflater.inflate(R.menu.call_menu, menu);
              super.onCreateOptionsMenu(menu, inflater);
    
         }
    
    0 讨论(0)
  • 2021-02-13 02:40

    Use before replace.

     fragment = new EditMyProfile();
     FragmentTransaction fragmentTransactionEditProfile =getSupportFragmentManager().beginTransaction();
     getSupportFragmentManager().popBackStack(null, FragmentManager.POP_BACK_STACK_INCLUSIVE);
     fragmentTransactionEditProfile.replace(R.id.frame, fragment);
     fragmentTransactionEditProfile.commit();
    
    0 讨论(0)
  • 2021-02-13 02:41

    Just check the count of menu items. Meaning menu.size()==0 ,no menu items are present,then inflate with layout menu,else don't inflate at all.

     @Override
     public void   onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
          if (menu.size() == 0)
          inflater.inflate(R.menu.call_menu, menu);
          super.onCreateOptionsMenu(menu, inflater);
    
     }
    
    0 讨论(0)
提交回复
热议问题