これをテーマに使っています。
<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">