在android开发网站上,我看到onOptionsItemSelected了return侧面说明的说法:
boolean Return false to allow normal menu processing to proceed, true to consume it here.
对不起,我的愚蠢,任何人都可以说明什么的句子解释,我应该返回真或假的在正常情况下?
小智 15
如果处理菜单项并返回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);
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3906 次 |
| 最近记录: |