0
我顯示了一個片段A,它實現了具有多個片段(嵌套片段)的ViewPager。在嵌套片段中使用OptionsMenu不更新
在我的嵌套片段中,我使用以下方法給菜單充氣。
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
inflater.inflate(R.menu.my_menu, menu);
super.onCreateOptionsMenu(menu, inflater);
}
此問題已被要求here。我試過所有的答案它不工作。
我的問題是 一切fine.but工作,當我打開另一個片段(它沒有任何選項菜單),並回到以前的觀點尋呼機片段,同時點擊菜單項onOptionsItemSelected不點火。當我滑動viewpager片段並回到前一個,當我點擊菜單項它的射擊。