summaryrefslogtreecommitdiff
path: root/java/com/android/dialer
diff options
context:
space:
mode:
authorcalderwoodra <calderwoodra@google.com>2017-06-23 11:02:01 -0700
committerUsman Abdullah <uabdullah@google.com>2017-06-23 13:24:04 -0700
commit9e71c63d0d45007363827d3cd7969ddd5e70e035 (patch)
tree21e82453f497064cb619cac3454a5acb5c73ee6d /java/com/android/dialer
parent9b9fcc08d21054fc322f0936aebc90c31b51389c (diff)
Updated in call ui for EC calls with text to not get cropped.
screenshots: short message (before cl): http://screen/pMAgfV540Y5 short message (after cl): http://screen/VN3TVTBYjPN long message (before cl): http://screen/V8jSApXmEC2 long message (after cl): http://screen/Vd7zyf2JGvP long message zoomed (before cl): http://screen/urWDNGACgOf long message zoomed (after cl): http://screen/i2xEch8HHoq PiperOrigin-RevId: 159968371 Change-Id: Icaf0a69949b206efd8d08001065cfb4ccdcb1726
Diffstat (limited to 'java/com/android/dialer')
-rw-r--r--java/com/android/dialer/callcomposer/res/layout/call_composer_activity.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/java/com/android/dialer/callcomposer/res/layout/call_composer_activity.xml b/java/com/android/dialer/callcomposer/res/layout/call_composer_activity.xml
index 588cc1d42..48d6368c2 100644
--- a/java/com/android/dialer/callcomposer/res/layout/call_composer_activity.xml
+++ b/java/com/android/dialer/callcomposer/res/layout/call_composer_activity.xml
@@ -43,6 +43,8 @@
android:layout_marginTop="@dimen/call_composer_contact_container_margin_top"
android:paddingTop="@dimen/call_composer_contact_container_padding_top"
android:paddingBottom="@dimen/call_composer_contact_container_padding_bottom"
+ android:paddingStart="16dp"
+ android:paddingEnd="16dp"
android:background="@color/dialer_theme_color">
<TextView
@@ -50,6 +52,8 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
+ android:maxLines="1"
+ android:ellipsize="end"
android:textColor="@color/background_dialer_white"
android:textSize="@dimen/call_composer_name_text_size"/>
@@ -58,6 +62,8 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
+ android:maxLines="1"
+ android:ellipsize="end"
android:textColor="@color/background_dialer_white"
android:textSize="@dimen/call_composer_number_text_size"/>
</LinearLayout>