private void setUpActionBar() {
// Make sure we're running on Honeycomb or higher to use ActionBar APIs
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
ActionBar actionBar = getActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
}
}
什么是动作栏?它是弹出窗口还是活动或其他什么?
还有一个问题,为什么我们需要在 android:showAsAction 属性中使用 'ifRoom' 参数?