diff options
| author | 2017-09-07 15:38:32 +0000 | |
|---|---|---|
| committer | 2017-09-07 15:38:32 +0000 | |
| commit | 00ee1298dc0edaf7f8dcaba67928a7a74ee2f5f1 (patch) | |
| tree | f32747a310c4fd14c2dbcce47ddd16d27959862c | |
| parent | 56dcbfc552eae08b3a1e86e300f52184f50b5164 (diff) | |
| parent | 406042a5be6f06c57f9e76858b5535c5197f5515 (diff) | |
Merge "Fix truncated text in inline settings" into oc-mr1-dev
am: 406042a5be
Change-Id: I2cb6066760c26103896720e47b6758901f3a637b
| -rw-r--r-- | packages/SystemUI/res/layout/notification_info.xml | 4 |
1 files changed, 3 insertions, 1 deletions
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"/> </LinearLayout> <!-- Channel Info Block --> |