0
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' 参数?

4

1 回答 1

0

它在 Android 世界中很重要......它通过许多教程和库进行了简化......这里有一些有用的链接......

http://developer.android.com/guide/topics/ui/actionbar.html

对于流行的 ActionBarSherlock..

http://actionbarsherlock.com/

教程..

http://www.vogella.com/articles/AndroidActionBar/article.html

还有很多...

于 2013-05-17T10:09:36.513 回答