使用xml文件创建的菜单程序,在使用 swtch捕捉用户点击时,要使用形似R.id.opmen1之类的变量才可正确捕捉。
函数如下:
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.opmenu1:
// newGame();
int i=0;
return true;
case R.id.opmenu2:
// quit();
int j=1;
return true;
}
return false;
}
No comments:
Post a Comment