我用这个作为主题。
<style name="ThemeSelector" parent="android:Theme.Light">
<item name="android:windowTitleBackgroundStyle">@style/WindowTitleBackground</item>
<item name="android:textAppearance">@style/TitleTextColor</item>
</style>
<style name="WindowTitleBackground">
<item name="android:background">@drawable/waterblue</item>
</style>
<style name="TitleTextColor">
<item name="android:textColor">@color/white</item>
</style>
分配了此背景图像,但文本颜色没有改变。
在清单中我是这样使用的。
<application
android:name="com.example"
android:allowBackup="true"
android:icon="@drawable/logo"
android:label="@string/app_name"
android:theme="@style/ThemeSelector">