我将如何更改操作栏的颜色?
问问题
392 次
1 回答
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 中的高级样式。
于 2012-08-25T04:25:27.993 回答