summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/voicemail/listui/res
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/dialer/voicemail/listui/res')
-rw-r--r--java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_call_log_entry.xml (renamed from java/com/android/dialer/voicemail/listui/res/layout/voicemail_call_log_entry.xml)35
-rw-r--r--java/com/android/dialer/voicemail/listui/res/values/dimens.xml2
2 files changed, 32 insertions, 5 deletions
diff --git a/java/com/android/dialer/voicemail/listui/res/layout/voicemail_call_log_entry.xml b/java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_call_log_entry.xml
index 3986a0e8c..01c0ee12e 100644
--- a/java/com/android/dialer/voicemail/listui/res/layout/voicemail_call_log_entry.xml
+++ b/java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_call_log_entry.xml
@@ -21,7 +21,6 @@
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/call_log_entry_top_margin"
android:paddingTop="@dimen/call_log_entry_padding_top_start"
- android:paddingBottom="@dimen/call_log_entry_padding_bottom_end"
android:paddingStart="@dimen/call_log_entry_padding_top_start"
android:paddingEnd="@dimen/call_log_entry_padding_bottom_end"
android:gravity="center_vertical">
@@ -43,22 +42,47 @@
android:layout_toStartOf="@+id/menu_button"
android:orientation="vertical">
+ <TextView
+ android:id="@+id/primary_text"
+ style="@style/PrimaryText"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="@dimen/call_log_entry_photo_text_margin"
+ android:layout_gravity="center_vertical"/>
+
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
+ <ImageView
+ android:layout_width="@dimen/voicemail_icon_size"
+ android:layout_height="@dimen/voicemail_icon_size"
+ android:layout_marginStart="@dimen/voicemail_icon_margin"
+ android:layout_gravity="center_vertical"
+ android:src="@drawable/quantum_ic_voicemail_vd_theme_24"
+ android:tint="@color/dialtacts_theme_color"
+ android:tintMode="multiply"
+ />
+
<TextView
- android:id="@+id/primary_text"
- style="@style/PrimaryText"
+ android:id="@+id/secondary_text"
+ style="@style/SecondaryText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/call_log_entry_photo_text_margin"/>
</LinearLayout>
+
+ <TextView
+ android:id="@+id/transcription_text"
+ style="@style/SecondaryText"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="@dimen/call_log_entry_photo_text_margin"
+ android:layout_gravity="center_vertical"/>
+
</LinearLayout>
- <!--TODO(uabdullah): Figure out why android:src="@drawable/quantum_ic_more_vert_vd_theme_24"
- causes http://gpaste/5400195130982400 -->
<ImageView
android:id="@+id/menu_button"
android:layout_width="@dimen/call_log_entry_menu_button_size"
@@ -67,5 +91,6 @@
android:layout_centerVertical="true"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:scaleType="center"
+ android:src="@drawable/quantum_ic_more_vert_vd_theme_24"
android:tint="@color/dialer_secondary_text_color"/>
</RelativeLayout>
diff --git a/java/com/android/dialer/voicemail/listui/res/values/dimens.xml b/java/com/android/dialer/voicemail/listui/res/values/dimens.xml
index 4ef0fc1a4..3df5827a5 100644
--- a/java/com/android/dialer/voicemail/listui/res/values/dimens.xml
+++ b/java/com/android/dialer/voicemail/listui/res/values/dimens.xml
@@ -25,4 +25,6 @@
<dimen name="call_log_entry_photo_text_margin">8dp</dimen>
<dimen name="call_log_entry_menu_button_size">48dp</dimen>
+ <dimen name="voicemail_icon_margin">12dp</dimen>
+ <dimen name="voicemail_icon_size">16dp</dimen>
</resources>