如何更改操作栏的颜色?
答案 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。