From 442e92eec1dd9575e4238dac83b1fb5f673a8ba7 Mon Sep 17 00:00:00 2001 From: Lyn Han Date: Tue, 16 Jun 2020 18:04:25 -0700 Subject: [PATCH] Ellipsize user edu title/desc; max 2 line title Fixes: 158468860 Test: force show user ed with long two line title: title takes up 2 lines, title and desc ellipsized Change-Id: I1dd4aa678d0ed865ec78619556ebe05e585163ba --- packages/SystemUI/res/layout/bubble_stack_user_education.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/SystemUI/res/layout/bubble_stack_user_education.xml b/packages/SystemUI/res/layout/bubble_stack_user_education.xml index 81b28e612993c..616403219bc61 100644 --- a/packages/SystemUI/res/layout/bubble_stack_user_education.xml +++ b/packages/SystemUI/res/layout/bubble_stack_user_education.xml @@ -33,7 +33,8 @@ android:layout_height="wrap_content" android:paddingBottom="16dp" android:fontFamily="@*android:string/config_bodyFontFamilyMedium" - android:maxLines="1" + android:maxLines="2" + android:ellipsize="end" android:text="@string/bubbles_user_education_title" android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Headline"/> @@ -41,6 +42,7 @@ android:id="@+id/user_education_description" android:layout_width="wrap_content" android:layout_height="wrap_content" + android:ellipsize="end" android:text="@string/bubbles_user_education_description" android:fontFamily="@*android:string/config_bodyFontFamily" android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Body2"/>