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);
}
}
什麼是ActionBar?它是彈出式窗口還是其他活動?難以理解ActionBar and ifRoom
還有一個問題,爲什麼我們需要在android:showAsAction屬性中使用'ifRoom'參數?
http://developer.android.com/guide/topics/ui/actionbar.html – Sam