Android操作栏样式生成器:更改操作栏的文本颜色不可用?

时间:2014-06-28 07:39:36

标签: android android-actionbar android-tabs android-styles

1 个答案:

答案 0 :(得分:1)

你可以用这个:

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);
    }
}

textView(actionBarTitleId)上获取Actionbar的ID然后执行您想要的操作。改变大小,颜色和....

如果您想要使用样式,请参阅This Thread