可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
I am using this as the theme.
<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>
With this background image is got assigned but text color is not changing.
In manifest I am using like this.
<application android:name="com.example" android:allowBackup="true" android:icon="@drawable/logo" android:label="@string/app_name" android:theme="@style/ThemeSelector">
回答1:
This is worked for me.
<resources xmlns:android="http://schemas.android.com/apk/res/android"> <style name="ThemeSelector" parent="@android:style/Theme.Holo.Light"> <item name="android:actionBarStyle">@style/myTheme.ActionBar</item> </style> <style name="myTheme.ActionBar" parent="@android:style/Widget.Holo.Light.ActionBar"> <item name="android:background">@drawable/lblue</item> <item name="android:titleTextStyle">@style/myTheme.ActionBar.Text</item> <item name="android:height">@dimen/app_head_height</item> </style> <style name="myTheme.ActionBar.Text" parent="@android:style/TextAppearance"> <item name="android:textColor">@color/white</item> <item name="android:textSize">@dimen/app_head</item> </style>
回答2:
Try this
<style name="ThemeSelector" parent="android:Theme.Light"> <item name="android:windowTitleBackgroundStyle">@style/WindowTitleBackground</item> <item name="android:titleTextStyle">@style/TitleTextColor</item> </style> <style name="WindowTitleBackground"> <item name="android:background">@drawable/waterblue</item> </style> <style name="TitleTextColor"> <item name="android:text">@string/app_name</item> <item name="android:textSize">10sp</item> <item name="android:textColor">#a23421</item> </style>
回答3:
I guess the attribute name will be android:titleTextStyle instead of android:textAppearance
回答4:
Yas Bro You can do this...
even you made your own custom titlebar ...
Just Go through this link
How to change the text on the action bar
which is from stackoverflow.
回答5:
Add the following line in your style.xml
for API level 23 and above.
<item name="android:titleTextColor">@color/black</item>