我想在动作模式中更改标题颜色。
这是我的styles.xml文件
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<!-- API 14 theme customizations can go here. -->
<item name="android:titleTextStyle">@style/customTextView</item>
</style>
<style name="customTextView">
<item name="android:textColor">@android:color/black</item>
</style>
但我看到白色的标题。我该如何解决?
由于