diff options
author | Bryan Owens <djbryan3540@gmail.com> | 2015-11-12 09:20:15 -0600 |
---|---|---|
committer | Gerrit Code Review <gerrit@cyanogenmod.org> | 2015-11-17 09:43:30 -0800 |
commit | bf3099fb6266e13e52e8e149697135484aa9f515 (patch) | |
tree | 3ee65a4dc8774ee72c52842c4e64130f909f6c6b /res/layout-sw600dp | |
parent | e6aed7196211928232ee005bd37a6a220ac64e64 (diff) | |
download | packages_apps_Settings-bf3099fb6266e13e52e8e149697135484aa9f515.zip packages_apps_Settings-bf3099fb6266e13e52e8e149697135484aa9f515.tar.gz packages_apps_Settings-bf3099fb6266e13e52e8e149697135484aa9f515.tar.bz2 |
Expose "ALL" hardcoded and @android colors
Change-Id: I8ef92ae66d4828ca85d624a300ef7cf29f7367d8
Signed-off-by: Bryan Owens <djbryan3540@gmail.com>
Diffstat (limited to 'res/layout-sw600dp')
-rw-r--r-- | res/layout-sw600dp/nfc_payment_how_it_works.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/res/layout-sw600dp/nfc_payment_how_it_works.xml b/res/layout-sw600dp/nfc_payment_how_it_works.xml index 3bee160..5d71e1a 100644 --- a/res/layout-sw600dp/nfc_payment_how_it_works.xml +++ b/res/layout-sw600dp/nfc_payment_how_it_works.xml @@ -3,7 +3,7 @@ android:id="@+id/trusted_devices_prompt_layout" android:layout_width="match_parent" android:layout_height="match_parent" - android:background="#FF80CBC4" > + android:background="@color/nfc_how_it_works_main_background" > <RelativeLayout android:layout_width="match_parent" @@ -12,7 +12,7 @@ <LinearLayout android:layout_width="match_parent" android:layout_height="336dp" - android:background="#FFB2DFDB" > + android:background="@color/nfc_how_it_works_background" > </LinearLayout> <LinearLayout @@ -37,7 +37,7 @@ android:layout_width="420dp" android:layout_height="wrap_content" android:text="@string/nfc_how_it_works_title" - android:textColor="#FF263238" + android:textColor="@color/nfc_how_it_works_title_text_color" android:textSize="24sp" /> <TextView @@ -47,14 +47,14 @@ android:paddingTop="10dp" android:paddingBottom="18dp" android:text="@string/nfc_how_it_works_content" - android:textColor="#FF263238" + android:textColor="@color/nfc_how_it_works_content_text_color" android:textSize="20sp" /> </LinearLayout> <RelativeLayout android:layout_width="match_parent" android:layout_height="48dp" android:layout_alignParentBottom="true" - android:background="#FFB2DFDB" > + android:background="@color/nfc_how_it_works_footer_background" > <Button android:id="@+id/nfc_how_it_works_button" android:background="?android:attr/selectableItemBackground" @@ -64,7 +64,7 @@ android:layout_marginRight="20dp" android:text="@string/nfc_how_it_works_got_it" android:textSize="14sp" - android:textColor="#263238" + android:textColor="@color/nfc_how_it_works_got_it_text_color" style="?android:attr/borderlessButtonStyle" /> </RelativeLayout> </RelativeLayout> |