summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorNancy Chen <nancychen@google.com>2014-07-24 20:00:40 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-07-24 20:00:40 +0000
commit7af900afc50afde7de934260d3f3787dfbb4f033 (patch)
treeef332e96c7fb9975f0d4b26d4061461a7c2290f4 /res
parentebb113c74e5d8bffc29722fe5449a8cdc78d8332 (diff)
parent196ad27a28cbfbca0959bcc64502b3aa3a5b3f09 (diff)
am 196ad27a: am 1107d6d9: am a396b7a4: Merge "Add disambiguation phone icon to recent phone call" into lmp-dev
* commit '196ad27a28cbfbca0959bcc64502b3aa3a5b3f09': Add disambiguation phone icon to recent phone call
Diffstat (limited to 'res')
-rw-r--r--res/layout/call_log_list_item.xml10
-rw-r--r--res/values/colors.xml5
2 files changed, 15 insertions, 0 deletions
diff --git a/res/layout/call_log_list_item.xml b/res/layout/call_log_list_item.xml
index 1e61f7768..ad382e51d 100644
--- a/res/layout/call_log_list_item.xml
+++ b/res/layout/call_log_list_item.xml
@@ -132,6 +132,16 @@
/>
</LinearLayout>
</LinearLayout>
+ <ImageView
+ android:id="@+id/call_indicator_icon"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:src="@drawable/ic_results_phone"
+ android:tint="@color/recent_call_log_item_phone_icon_tint"
+ android:alpha="0.3"
+ android:visibility="gone"
+ />
</LinearLayout>
<!-- Viewstub with additional expandable actions for a call log entry -->
diff --git a/res/values/colors.xml b/res/values/colors.xml
index d7a929fda..44346bc8e 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -33,6 +33,9 @@
<!-- Color of the text describing an unconsumed voicemail. -->
<color name="call_log_voicemail_highlight_color">#33b5e5</color>
+ <!-- Tint of the recent card phone icon -->
+ <color name="recent_call_log_item_phone_icon_tint">#000000</color>
+
<!--
Colour of voicemail progress bar to the right of position indicator.
Same as the background color of the dialer
@@ -93,4 +96,6 @@
<color name="actionbar_icon_color">#ffffff</color>
<color name="dialer_dialpad_touch_tint">#331dc7db</color>
+
+
</resources>