这是我的NavagatorView代码,
<item
android:icon="@drawable/ic_home_black_24dp"
android:title="Main"
android:id="@+id/Main"
/>
<item
android:icon="@drawable/ic_wc_black_24dp"
android:title="Matched"
android:id="@+id/Matched"
/>
这是我的点击注册码,
@Override
public boolean onCreateOptionsMenu(Menu menu){
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle item selection
switch (item.getItemId()) {
case R.id.Main:
//newGame();
return true;
case R.id.Matched:
displayInfoDialogView();
return true;
default:
return super.onOptionsItemSelected(item);
}
}
我想要点击&#34;匹配&#34; displayInfoDialogView();运行。 现在当我跑的时候没有任何事情发生。
答案 0 :(得分:0)
在onCreateView方法中添加以下代码:
setHasOptionsMenu(true);