“自动处理主页/向上按钮的点击”?

时间:2015-01-30 00:07:34

标签: android

我想问一下automatically handle clicks on the Home/Up button方法中的onOptionsItemSelected评论意味着什么。

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    return super.onOptionsItemSelected(item);
}

1 个答案:

答案 0 :(得分:1)

根据source code for Activity更明确地在source code for ActionBarActivity中,如果您自己不处理,基类将自动处理点击Up button的操作。