summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlinus_lee <llee@cyngn.com>2014-10-13 15:26:26 -0700
committerlinus_lee <llee@cyngn.com>2014-11-20 12:51:32 -0800
commit137f81b82727a42879e488fa2925a118940f11b7 (patch)
treeaf7ea2ad84f27e69b76b3e51ccb187770850e79f
parent688e09202a5c4b614bdae6bb7e64b10a70aa085c (diff)
downloadandroid_packages_apps_Eleven-137f81b82727a42879e488fa2925a118940f11b7.tar.gz
android_packages_apps_Eleven-137f81b82727a42879e488fa2925a118940f11b7.tar.bz2
android_packages_apps_Eleven-137f81b82727a42879e488fa2925a118940f11b7.zip
Eleven: Fix action bar header text size/color/style
https://cyanogen.atlassian.net/browse/MUSIC-91 Change-Id: Ieda11e8a96b96bdfe57774a8fd88fec7b253766b
-rw-r--r--res/layout/header_bar.xml3
-rw-r--r--res/values/colors.xml2
-rw-r--r--res/values/styles.xml2
3 files changed, 5 insertions, 2 deletions
diff --git a/res/layout/header_bar.xml b/res/layout/header_bar.xml
index b83a818..75cb08b 100644
--- a/res/layout/header_bar.xml
+++ b/res/layout/header_bar.xml
@@ -30,7 +30,8 @@
android:singleLine="true"
android:textAllCaps="true"
android:textColor="@color/header_action_bar_text_color"
- android:textSize="@dimen/text_size_large" />
+ android:textSize="@dimen/text_size_medium"
+ android:textStyle="bold" />
<ImageView
android:id="@+id/header_bar_custom_button"
diff --git a/res/values/colors.xml b/res/values/colors.xml
index c62cbf2..08a96aa 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -63,7 +63,7 @@
<!-- Color for the action bar -->
<color name="header_action_bar_color">#ff31353f</color>
- <color name="header_action_bar_text_color">@color/white</color>
+ <color name="header_action_bar_text_color">#bfffffff</color>
<color name="bottom_action_bar_text_color">@color/default_text_color_light</color>
<!-- Background color used on some page headers -->
diff --git a/res/values/styles.xml b/res/values/styles.xml
index 7d11d0f..7a43cdc 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -84,6 +84,8 @@
<!-- Sets the action bar title text color -->
<style name="ActionBar.TitleText" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title">
<item name="android:textColor">@color/header_action_bar_text_color</item>
+ <item name="android:textSize">@dimen/text_size_medium</item>
+ <item name="android:textStyle">bold</item>
</style>
<style name="ActionBar.SubtitleText" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Subtitle">