我无法更改操作栏文本的颜色,背景颜色正常,但不是文字的颜色。
<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyActionBar</item>
<item name="android:titleTextStyle">@style/myTheme.ActionBar.Text</item>
</style>
<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#0E2F44</item>
</style>
<style name="myTheme.ActionBar.Text" parent="@android:style/TextAppearance">
<item name="android:textColor">@color/actionBarText</item>
</style>
这是清单:
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="21" />
答案 0 :(得分:0)
为什么不以编程方式执行此操作
Random rnd = new Random();
ToolBar.setTitleTextColor(Color.argb(255, rnd.nextInt(256), rnd.nextInt(256), rnd.nextInt(256)));
实际上这套是随机颜色..