如何更改操作栏的颜色?

时间:2012-08-25 04:19:13

标签: android

如何更改操作栏的颜色?

1 个答案:

答案 0 :(得分:0)

请尝试以下代码。

从Android资源中获取id(就像我们从R.java中获取id一样)

int titleId = Resources.getSystem().getIdentifier("action_bar_title", "id", "android");

现在您将TextView与我们提取的ID一起使用。

TextView textView = (TextView)findViewById(titleId);
textView.setTextColor(colorId);

请查看Android中的Advance Styles