summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorNicholas Chum <nicholaschum@users.noreply.github.com>2015-11-17 22:45:49 -0500
committerSteve Kondik <shade@chemlab.org>2015-12-04 19:45:59 -0800
commitfd00d2d93b9889e57a937f0b5631b82d83770621 (patch)
tree700f38f27727685ad75cb3d98460ba69c4a561ef /res
parent1c0b8b7d829d77cc573d9e4c3272425607ae663a (diff)
downloadpackages_apps_Settings-fd00d2d93b9889e57a937f0b5631b82d83770621.zip
packages_apps_Settings-fd00d2d93b9889e57a937f0b5631b82d83770621.tar.gz
packages_apps_Settings-fd00d2d93b9889e57a937f0b5631b82d83770621.tar.bz2
Themes: Expose forced tint on fingerprint enrollment checkmark
Allow themers to manually tint the checkmark in SetupWizard. Change-Id: I32f2264eadc13b7ebc98721551f0b5b4a955c26f
Diffstat (limited to 'res')
-rw-r--r--res/layout/fingerprint_enroll_onboard.xml4
-rw-r--r--res/values/cm_colors.xml2
2 files changed, 4 insertions, 2 deletions
diff --git a/res/layout/fingerprint_enroll_onboard.xml b/res/layout/fingerprint_enroll_onboard.xml
index 4189137..fcdb9c0 100644
--- a/res/layout/fingerprint_enroll_onboard.xml
+++ b/res/layout/fingerprint_enroll_onboard.xml
@@ -51,7 +51,7 @@
android:layout_marginEnd="24dp"
android:importantForAccessibility="no"
android:src="@drawable/ic_check"
- android:tint="?android:attr/textColorPrimary" />
+ android:tint="@color/fingerprint_enrollment_checkmark_tint" />
<TextView
style="@style/TextAppearance.FingerprintMessage"
@@ -76,7 +76,7 @@
android:layout_marginEnd="24dp"
android:importantForAccessibility="no"
android:src="@drawable/ic_check"
- android:tint="?android:attr/textColorPrimary" />
+ android:tint="@color/fingerprint_enrollment_checkmark_tint" />
<TextView
style="@style/TextAppearance.FingerprintMessage"
diff --git a/res/values/cm_colors.xml b/res/values/cm_colors.xml
index d904376..629a9a2 100644
--- a/res/values/cm_colors.xml
+++ b/res/values/cm_colors.xml
@@ -82,4 +82,6 @@ limitations under the License.
<color name="contributors_cloud_selected_color">#ff5252</color>
<color name="external_tile_icon_tint_color">?android:attr/colorAccent</color>
+ <!-- Fingerprint Checkmark Tint-->
+ <color name="fingerprint_enrollment_checkmark_tint">?android:attr/textColorPrimary</color>
</resources>