summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/calldetails/res/layout/call_details_entry.xml
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/dialer/calldetails/res/layout/call_details_entry.xml')
-rw-r--r--java/com/android/dialer/calldetails/res/layout/call_details_entry.xml12
1 files changed, 8 insertions, 4 deletions
diff --git a/java/com/android/dialer/calldetails/res/layout/call_details_entry.xml b/java/com/android/dialer/calldetails/res/layout/call_details_entry.xml
index 3f2ba7534..3d4750d09 100644
--- a/java/com/android/dialer/calldetails/res/layout/call_details_entry.xml
+++ b/java/com/android/dialer/calldetails/res/layout/call_details_entry.xml
@@ -30,9 +30,13 @@
<TextView
android:id="@+id/call_type"
- android:layout_width="wrap_content"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/call_entry_text_left_margin"
+ android:layout_marginEnd="16dp"
+ android:layout_toStartOf="@+id/call_duration"
+ android:gravity="start"
+ android:maxLines="100"
style="@style/PrimaryText"/>
<TextView
@@ -57,7 +61,6 @@
android:id="@+id/ec_container"
android:layout_height="@dimen/ec_container_height"
android:layout_width="match_parent"
- android:layout_marginStart="@dimen/call_entry_text_left_margin"
android:layout_below="@+id/call_time"
android:visibility="gone"/>
@@ -65,11 +68,12 @@
android:id="@+id/post_call_note"
android:layout_width="match_parent"
android:layout_height="@dimen/ec_container_height"
+ android:layout_below="@+id/ec_container"
+ android:paddingStart="@dimen/call_entry_text_left_margin"
android:gravity="center_vertical"
- android:layout_marginStart="@dimen/ec_post_call_left_margin"
android:maxLines="2"
android:visibility="gone"
- android:layout_below="@+id/ec_container"
+ android:background="?attr/selectableItemBackground"
style="@style/SecondaryText"/>
<View