-1

我将如何更改操作栏的颜色?

4

1 回答 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 回答