summaryrefslogtreecommitdiff
path: root/InCallUI/res/drawable
diff options
context:
space:
mode:
authorNancy Chen <nancychen@google.com>2015-09-25 17:40:44 -0700
committerNancy Chen <nancychen@google.com>2015-10-01 14:41:41 -0700
commitde3ab88fa732564be6fd803de5f92af5d554e5f4 (patch)
tree9c5e1b73c864759a1b6f8a622acdceb6f3634300 /InCallUI/res/drawable
parentb9dbc1728172c5ff767e88947f3665c71e8ca359 (diff)
Adapter logic for adding call context to call card fragment.
+ Adapter for call context list view + Method in CallCardFragment that handles properly displaying the call context information + Strings for the call context title Note: the setCallContext method is currently not being called anywhere. It is anticipated to be called in CallCardPresenter after the appropriate data is loaded. Bug: 23351559 Change-Id: Id72390fc9d2a8794b88ab72661381eb96596d619
Diffstat (limited to 'InCallUI/res/drawable')
-rw-r--r--InCallUI/res/drawable/incoming_sms_background.xml10
-rw-r--r--InCallUI/res/drawable/outgoing_sms_background.xml10
2 files changed, 10 insertions, 10 deletions
diff --git a/InCallUI/res/drawable/incoming_sms_background.xml b/InCallUI/res/drawable/incoming_sms_background.xml
index 231ae2588..81ff21c61 100644
--- a/InCallUI/res/drawable/incoming_sms_background.xml
+++ b/InCallUI/res/drawable/incoming_sms_background.xml
@@ -17,9 +17,9 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
- android:topLeftRadius="@dimen/contact_call_content_message_background_main_radius"
- android:topRightRadius="@dimen/contact_call_content_message_background_main_radius"
- android:bottomRightRadius="@dimen/contact_call_content_message_background_main_radius"
- android:bottomLeftRadius="@dimen/contact_call_content_message_background_accent_radius"/>
- <solid android:color="@color/contact_call_context_message_background_color" />
+ android:topLeftRadius="@dimen/person_contact_context_message_background_main_radius"
+ android:topRightRadius="@dimen/person_contact_context_message_background_main_radius"
+ android:bottomRightRadius="@dimen/person_contact_context_message_background_main_radius"
+ android:bottomLeftRadius="@dimen/person_contact_context_message_background_accent_radius"/>
+ <solid android:color="@color/person_contact_context_message_background_color" />
</shape>
diff --git a/InCallUI/res/drawable/outgoing_sms_background.xml b/InCallUI/res/drawable/outgoing_sms_background.xml
index 09c870f4e..e4f868fea 100644
--- a/InCallUI/res/drawable/outgoing_sms_background.xml
+++ b/InCallUI/res/drawable/outgoing_sms_background.xml
@@ -17,9 +17,9 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
- android:topLeftRadius="@dimen/contact_call_content_message_background_main_radius"
- android:topRightRadius="@dimen/contact_call_content_message_background_main_radius"
- android:bottomLeftRadius="@dimen/contact_call_content_message_background_main_radius"
- android:bottomRightRadius="@dimen/contact_call_content_message_background_accent_radius"/>
- <solid android:color="@color/contact_call_context_message_background_color" />
+ android:topLeftRadius="@dimen/person_contact_context_message_background_main_radius"
+ android:topRightRadius="@dimen/person_contact_context_message_background_main_radius"
+ android:bottomLeftRadius="@dimen/person_contact_context_message_background_main_radius"
+ android:bottomRightRadius="@dimen/person_contact_context_message_background_accent_radius"/>
+ <solid android:color="@color/person_contact_context_message_background_color" />
</shape>