在
android开发网站上,我看到onOptionsItemSelected的解释,在返回方面,它说:
boolean返回false以允许正常菜单处理继续,true在此处使用它.
boolean返回false以允许正常菜单处理继续,true在此处使用它.
对不起我的笨蛋,任何人都可以说明这句话的解释,我应该在正常情况下返回真假吗?
解决方法
如果处理菜单项并返回super.onOptionsItemSelected(item),则应返回true.
例如
- public boolean onOptionsItemSelected(MenuItem item)
- {
- switch (item.getItemId())
- {
- case R.id.option1:
- handleOption1();
- return true;
- case R.id.option2:
- handleOption2();
- return true;
- default:
- return super.onOptionsItemSelected(item);
- }
- }