2014-06-28 35 views

回答

1

您可以使用此:在Actionbar(actionBarTitleId)的textView

int actionBarTitleId = Resources.getSystem().getIdentifier("action_bar_title", "id", "android"); 
if (actionBarTitleId > 0) { 
    TextView title = (TextView) findViewById(actionBarTitleId); 
    if (title != null) { 
     title.setTextColor(Color.RED); 
    } 
} 

獲取ID,然後在你什麼都想要。改變尺寸,顏色和...

如果你想使用的風格和更多的信息,請參閱This Thread