summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2015-05-08 17:23:42 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-05-08 17:23:43 +0000
commit84586d3b8eef15f77a91d371b6589e66105effa8 (patch)
treec7ad13b113cc679ab650e9ed527483ae1e7455ce /res
parente7ef086eb7b676a5006345082fe12b7ec15e084b (diff)
parent5a9cd71b8ea670cd7c9aebd3dba27ea8cbe769df (diff)
Merge "Add call log list item actions for adding contacts." into mnc-dev
Diffstat (limited to 'res')
-rw-r--r--res/layout/call_log_list_item_actions.xml36
1 files changed, 33 insertions, 3 deletions
diff --git a/res/layout/call_log_list_item_actions.xml b/res/layout/call_log_list_item_actions.xml
index 43da5d21b..5740aaa38 100644
--- a/res/layout/call_log_list_item_actions.xml
+++ b/res/layout/call_log_list_item_actions.xml
@@ -51,9 +51,39 @@
<TextView
style="@style/CallLogActionTextStyle"
- android:text="@string/call_log_action_voicemail"
- android:nextFocusLeft="@+id/video_call_action"
- android:nextFocusRight="@+id/details_action" />
+ android:text="@string/call_log_action_voicemail" />
+
+ </LinearLayout>
+
+ <LinearLayout
+ android:id="@+id/create_new_contact_action"
+ style="@style/CallLogActionStyle"
+ android:nextFocusLeft="@+id/voicemail_action"
+ android:nextFocusRight="@+id/add_to_existing_contact_action">
+
+ <ImageView
+ style="@style/CallLogActionIconStyle"
+ android:src="@drawable/ic_person_add_24dp" />
+
+ <TextView
+ style="@style/CallLogActionTextStyle"
+ android:text="@string/search_shortcut_create_new_contact" />
+
+ </LinearLayout>
+
+ <LinearLayout
+ android:id="@+id/add_to_existing_contact_action"
+ style="@style/CallLogActionStyle"
+ android:nextFocusLeft="@+id/create_new_contact_action"
+ android:nextFocusRight="@+id/details_action">
+
+ <ImageView
+ style="@style/CallLogActionIconStyle"
+ android:src="@drawable/ic_person_24dp" />
+
+ <TextView
+ style="@style/CallLogActionTextStyle"
+ android:text="@string/search_shortcut_add_to_existing_contact" />
</LinearLayout>