diff options
| author | elelinux <ele.linux@gmail.com> | 2013-08-21 21:07:14 +0200 |
|---|---|---|
| committer | elelinux <ele.linux@gmail.com> | 2013-08-21 21:07:14 +0200 |
| commit | 5ce043d887927e729bf577ab63be2bdb27cad3d7 (patch) | |
| tree | d808453a8cd56582bf964a6856d17aff6a4d6f98 | |
| parent | 3bd81ef7baff1fdc95f0443c0f234864611500c0 (diff) | |
| download | android_packages_apps_ContactsCommon-5ce043d887927e729bf577ab63be2bdb27cad3d7.tar.gz android_packages_apps_ContactsCommon-5ce043d887927e729bf577ab63be2bdb27cad3d7.tar.bz2 android_packages_apps_ContactsCommon-5ce043d887927e729bf577ab63be2bdb27cad3d7.zip | |
ContactsCommon: allow full theming via theme chooser
Change-Id: Ic3b3875a4b4cffa60e90676d29dc86726193d525
| -rw-r--r-- | res/layout/contact_tile_phone_starred.xml | 2 | ||||
| -rw-r--r-- | res/layout/contact_tile_starred.xml | 2 | ||||
| -rw-r--r-- | res/layout/contact_tile_starred_quick_contact.xml | 2 | ||||
| -rw-r--r-- | res/values/colors.xml | 3 |
4 files changed, 6 insertions, 3 deletions
diff --git a/res/layout/contact_tile_phone_starred.xml b/res/layout/contact_tile_phone_starred.xml index e1e4970a..3aefcd54 100644 --- a/res/layout/contact_tile_phone_starred.xml +++ b/res/layout/contact_tile_phone_starred.xml @@ -37,7 +37,7 @@ android:layout_height="@dimen/contact_tile_shadowbox_height" android:background="@color/contact_tile_shadow_box_color" android:gravity="center_vertical" - android:textColor="@android:color/white" + android:textColor="@color/contact_tile_name_text" android:singleLine="true" android:textSize="16sp" android:fadingEdge="horizontal" diff --git a/res/layout/contact_tile_starred.xml b/res/layout/contact_tile_starred.xml index e3637472..9cb8d96f 100644 --- a/res/layout/contact_tile_starred.xml +++ b/res/layout/contact_tile_starred.xml @@ -48,7 +48,7 @@ android:id="@+id/contact_tile_name" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:textColor="@android:color/white" + android:textColor="@color/contact_tile_name_text" android:textSize="16sp" android:singleLine="true" android:fadingEdge="horizontal" diff --git a/res/layout/contact_tile_starred_quick_contact.xml b/res/layout/contact_tile_starred_quick_contact.xml index ecbe5839..579f0fa7 100644 --- a/res/layout/contact_tile_starred_quick_contact.xml +++ b/res/layout/contact_tile_starred_quick_contact.xml @@ -47,7 +47,7 @@ android:id="@+id/contact_tile_name" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:textColor="@android:color/white" + android:textColor="@color/contact_tile_name_text" android:textSize="16sp" android:singleLine="true" android:fadingEdge="horizontal" diff --git a/res/values/colors.xml b/res/values/colors.xml index 76000877..7886ca97 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -38,4 +38,7 @@ <color name="textColorIconOverlay">#fff</color> <color name="textColorIconOverlayShadow">#000</color> + + <!-- New Colors for Theme Chooser to be compatible --> + <color name="contact_tile_name_text">#ffffffff</color> </resources> |
