我想问一下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);
}
答案 0 :(得分:1)
根据source code for Activity
更明确地在source code for ActionBarActivity
中,如果您自己不处理,基类将自动处理点击Up button的操作。