summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorDave Kover <kover@cyngn.com>2016-02-22 17:32:36 -0800
committerGerrit Code Review <gerrit@cyanogenmod.org>2016-02-24 09:13:05 -0800
commit84e68cf7f862505903ed95d9a02abeb30b525b4f (patch)
treeacad3a7968548ab69dc781f0364ccfbb8b003e41 /res/layout
parente1a196a2afcc534db42492b0133f3c36a7c26de5 (diff)
downloadpackages_apps_Settings-84e68cf7f862505903ed95d9a02abeb30b525b4f.tar.gz
packages_apps_Settings-84e68cf7f862505903ed95d9a02abeb30b525b4f.tar.bz2
packages_apps_Settings-84e68cf7f862505903ed95d9a02abeb30b525b4f.zip
Break out text color value from commonly used color.
Too many locations are using text_color_white and this will affect theme options when it comes to the switch_bar_background color. We can point to a new value, which points to the current value and all will be right with the world. Change-Id: I9b1e67b7ce4f31d1e1203cdb11c630682ceb7ba8 Ticket: CYNGNOS-2124
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/app_header.xml2
-rw-r--r--res/layout/filter_spinner_item.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/res/layout/app_header.xml b/res/layout/app_header.xml
index bad94c029..3b0d78ac5 100644
--- a/res/layout/app_header.xml
+++ b/res/layout/app_header.xml
@@ -36,7 +36,7 @@
android:layout_alignWithParentIfMissing="true"
android:layout_centerVertical="true"
android:textAppearance="@style/TextAppearance.Switch"
- android:textColor="@color/text_color_white"
+ android:textColor="@color/app_name_text_color"
android:textAlignment="viewStart" />
<ImageView
diff --git a/res/layout/filter_spinner_item.xml b/res/layout/filter_spinner_item.xml
index 6b7bdb85f..8e0bd4a7a 100644
--- a/res/layout/filter_spinner_item.xml
+++ b/res/layout/filter_spinner_item.xml
@@ -23,5 +23,5 @@
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:textAppearance="@style/TextAppearance.Switch"
- android:textColor="@color/text_color_white"
+ android:textColor="@color/filter_spinner_text_color"
android:textAlignment="inherit"/>