1
我有一個活動和五個片段。我有一個導航抽屜按鈕在選項菜單,它可以幫助我瀏覽片段。但在一個片段,我想改變它回到button.Currently後退按鈕工作正常。但與此同時,活動選項菜單也起作用,並且會帶來導航抽屜。如何停止該操作?oncreate選項菜單的片段stoppng活動oncreateoptionmenu
這裏是我的抽屜
MainActivity
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.action_settings:
FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.container, new SettingsFragment());
fragmentTransaction.addToBackStack(null);
fragmentTransaction.commit();
break;
case android.R.id.home:
mDrawerLayout.openDrawer(GravityCompat.START);
break;
default:
break;
}
return super.onOptionsItemSelected(item);
}
片段
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
getFragmentManager().popBackStack();
return true;
default:
break;
}
return super.onOptionsItemSelected(item);
}
其實當我選擇這兩個選項菜單選項菜單家庭代碼的工作,我想唯一的片段選項菜單中工作。我該如何阻止它?請幫助