我构建了一个 Android 应用程序,我正在尝试更改标题栏的背景和文本颜色。
在 AndroidManifest.xml 中:
<application
...
android:theme="@style/ThemeSelector"
>
在样式.xml 中:
<style name="ThemeSelector" parent="android:Theme.Light">
<item name="android:windowTitleBackgroundStyle">@style/WindowTitleBackground</item>
</style>
<style name="WindowTitleBackground">
<item name="android:background">@color/titlebackgroundcolor</item>
<item name="android:textColor">@color/titletextcolor</item>
</style>
使用此代码,我设法更改背景颜色而不是文本颜色。
你能解释一下为什么这段代码不起作用吗?
谢谢