我不想爲應用標籤創建任何自定義佈局,只是想將它的顏色更改爲白色(現在是黑色)。我怎麼能這樣做?Android應用標籤顏色
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<style name="MyActionBar" parent="@android:style/Widget.Holo.ActionBar">
<item name="android:background">@drawable/bg_blue_solid_onclick</item>
//////CHANGE label color
</style>
</resources>
謝謝,它的作品!也許我也可以在那裏使文本變成粗體,或者我需要輔助佈局? – user3082220
@ user3082220你需要有任何額外的fpr烘焙文本粗體。你可以使用一個spannable字符串並將其設置爲textview,因此你需要一個自定義視圖來顯示我想要的操作欄。我想你也使用樣式 – Raghunandan
@ user3082220使用這個'- 粗體
'並檢查編輯 –
Raghunandan