From b430975f6966560ac6929d9624edfe59dfb32a14 Mon Sep 17 00:00:00 2001 From: Julia Reynolds Date: Fri, 1 Sep 2017 16:09:25 -0400 Subject: Fix truncated text in inline settings Change-Id: I6606b84d75fea308f75c39b90f5d5ee59e54b2d5 Fixes: 65059562 Test: manual --- packages/SystemUI/res/layout/notification_info.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/SystemUI/res/layout/notification_info.xml b/packages/SystemUI/res/layout/notification_info.xml index bbd315ee8776..6df1657ba947 100644 --- a/packages/SystemUI/res/layout/notification_info.xml +++ b/packages/SystemUI/res/layout/notification_info.xml @@ -62,7 +62,9 @@ android:layout_height="wrap_content" android:textAppearance="@*android:style/TextAppearance.Material.Notification.Info" android:layout_marginStart="2dp" - android:layout_marginEnd="2dp"/> + android:layout_marginEnd="2dp" + android:ellipsize="end" + android:maxLines="1"/> -- cgit v1.2.3-59-g8ed1b