設(shè)置標(biāo)題:
actionBar.setTitle("關(guān)于我們");
顯示“返回箭頭的按鈕"
actionBar.setDisplayHomeAsUpEnabled(true);
監(jiān)聽返回按鈕的 事件
public boolean onOptionsItemSelected(MenuItem item) {
if (item.getItemId() == android.R.id.home) {
finish();
return true;
}
return super.onOptionsItemSelected(item);
}
隱藏圖標(biāo)logo
我采用了一種使用將logo設(shè)置透明的方式:
getActionBar().setIcon(
new ColorDrawable(getResources().getColor(android.R.color.transparent)));
參考:
http://stackoverflow.com/questions/14606294/remove-icon-logo-from-action-bar-on-android