我想改變我的行動吧,而不是白色文字的顏色我想#59380d,所以我說的顏色,這樣的color.xml:更改Android操作欄文本顏色
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="#59380d"/>
</selector>
,然後我打電話到我styles.xml這樣的:
<resources>
<style name="AppBaseTheme" parent="android:Theme.Light">
<item name="android:textColor">@color/header</item>
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:textColor">@color/header</item>
</style>
</resources>
,並最終在我的AndroidManifest我設置這樣的aplication:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:name="com.app.activities.MyAp"
android:theme="@style/AppTheme" >
...
</aplication>
但行動酒吧的文字仍然是白色的。你需要什麼,我做錯了
你可以檢查[this](http://stackoverflow.com/questions/28888852/android-toolbar-text-color)如果你正在使用工具欄,兩個答案都是excel借,或谷歌更多,如果不是 – Elltz
看看[這個](http://stackoverflow.com/questions/8607707/how-to-set-a-custom-font-in-the-actionbar-title),它解釋瞭如何在操作欄文本上設置自定義字體和顏色。它不是那麼簡單,你會想.. – JPS
好吧,我解決了這個問題,謝謝@Elltz鏈接幫助我很多。我將- @ color/header
添加到styles.xml中並且它可以工作 –
jordiPons