summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2014-03-05 17:50:50 -0800
committerYorke Lee <yorkelee@google.com>2014-03-20 16:35:03 -0700
commit9e91bb0709f420a8c19c344965cc1410a38bccd5 (patch)
treedd9c2ffa81a910206186eed4f680115d6cfc44f6 /res
parent0b41f0f32c66cd7d58d2635d6b2434c467b82b2a (diff)
downloadandroid_packages_apps_Dialer-9e91bb0709f420a8c19c344965cc1410a38bccd5.tar.gz
android_packages_apps_Dialer-9e91bb0709f420a8c19c344965cc1410a38bccd5.tar.bz2
android_packages_apps_Dialer-9e91bb0709f420a8c19c344965cc1410a38bccd5.zip
Fix overdraw in Dialer
* Set window background to null per framework advice to reduce overdraw * Remove unnecessary background layers * Fix the slightly deeper gray background above the searchbox Bug: 10446771 Change-Id: Ie11db155593c7ea2118141aec876da37be35a7d5
Diffstat (limited to 'res')
-rw-r--r--res/drawable/background_all_contacts.xml5
-rw-r--r--res/layout/call_log_fragment.xml6
-rw-r--r--res/layout/call_log_list_item.xml1
-rw-r--r--res/layout/dialtacts_activity.xml1
-rw-r--r--res/layout/phone_favorites_fragment.xml3
-rw-r--r--res/values/colors.xml4
-rw-r--r--res/values/styles.xml2
7 files changed, 9 insertions, 13 deletions
diff --git a/res/drawable/background_all_contacts.xml b/res/drawable/background_all_contacts.xml
index 0d3703f84..b7a059a92 100644
--- a/res/drawable/background_all_contacts.xml
+++ b/res/drawable/background_all_contacts.xml
@@ -16,11 +16,6 @@
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
- <item android:state_pressed="false">
- <shape android:shape="rectangle" >
- <solid android:color="@color/all_contacts_button_color" />
- </shape>
- </item>
<item android:state_pressed="true">
<shape android:shape="rectangle" >
<solid android:color="@color/all_contacts_button_pressed_color" />
diff --git a/res/layout/call_log_fragment.xml b/res/layout/call_log_fragment.xml
index e58e160a5..aa8a185a8 100644
--- a/res/layout/call_log_fragment.xml
+++ b/res/layout/call_log_fragment.xml
@@ -20,7 +20,8 @@
android:layout_height="match_parent"
android:orientation="vertical"
android:divider="?android:attr/dividerHorizontal"
- android:showDividers="end">
+ android:showDividers="end"
+ android:background="@color/background_dialer_list_items">
<FrameLayout
android:id="@+id/voicemail_status"
@@ -65,7 +66,8 @@
android:layout_height="match_parent"
android:fadingEdge="none"
android:scrollbarStyle="outsideOverlay"
- android:divider="@null"
+ android:divider="@color/favorite_contacts_separator_color"
+ android:dividerHeight="1dp"
/>
<TextView android:id="@android:id/empty"
android:layout_width="match_parent"
diff --git a/res/layout/call_log_list_item.xml b/res/layout/call_log_list_item.xml
index e17dc279b..a33ec7d7c 100644
--- a/res/layout/call_log_list_item.xml
+++ b/res/layout/call_log_list_item.xml
@@ -21,7 +21,6 @@
android:layout_height="wrap_content"
android:id="@+id/call_log_list_item"
android:orientation="vertical"
- android:background="@drawable/bottom_border_background"
>
<!--
This layout may represent either a call log item or one of the
diff --git a/res/layout/dialtacts_activity.xml b/res/layout/dialtacts_activity.xml
index 0f805647f..2860886aa 100644
--- a/res/layout/dialtacts_activity.xml
+++ b/res/layout/dialtacts_activity.xml
@@ -21,6 +21,7 @@
android:orientation="vertical"
android:focusableInTouchMode="true"
android:clipChildren="false"
+ android:background="@color/background_dialer_light"
>
<FrameLayout
diff --git a/res/layout/phone_favorites_fragment.xml b/res/layout/phone_favorites_fragment.xml
index d1ff3d75a..49924863a 100644
--- a/res/layout/phone_favorites_fragment.xml
+++ b/res/layout/phone_favorites_fragment.xml
@@ -21,8 +21,7 @@
android:layout_height="match_parent"
android:divider="?android:attr/dividerHorizontal"
android:showDividers="end"
- android:clipChildren="false"
- android:background="@color/background_dialer_list_items">
+ android:clipChildren="false">
<FrameLayout
android:id="@+id/contact_tile_frame"
diff --git a/res/values/colors.xml b/res/values/colors.xml
index e9730eab9..b234bacf9 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -52,10 +52,10 @@
<color name="item_selected">#660099cc</color>
<!-- Background color of new dialer activity -->
- <color name="background_dialer_light">#eeeeee</color>
+ <color name="background_dialer_light">#ebebeb</color>
<!-- Background color of dialer list items (contacts, call log entries) -->
- <color name="background_dialer_list_items">#eeeeee</color>
+ <color name="background_dialer_list_items">#ebebeb</color>
<!-- Background color of action bars. Ensure this stays in sync with packages/Telephony
actionbar_background_color. -->
diff --git a/res/values/styles.xml b/res/values/styles.xml
index 1025d0fdc..9302b959c 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -104,7 +104,7 @@
</style>
<style name="CallDetailActivityTheme" parent="android:Theme.Holo.Light">
- <item name="android:windowBackground">@color/background_dialer_list_items</item>
+ <item name="android:windowBackground">@color/background_dialer_light</item>
<item name="android:gravity">top</item>
<item name="android:listViewStyle">@style/ListViewStyle</item>
<item name="android:actionBarStyle">@style/DialtactsActionBarStyle</item>