From 92dd055a86d9a7b2c6a7c1c5faa75b7fd356405d Mon Sep 17 00:00:00 2001 From: Jeff Boek Date: Thu, 14 Feb 2019 15:32:32 -0800 Subject: [PATCH] For #357 - Forces history titles to be a single line --- app/src/main/res/layout/history_list_item.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/src/main/res/layout/history_list_item.xml b/app/src/main/res/layout/history_list_item.xml index efd9da46d..48269c011 100644 --- a/app/src/main/res/layout/history_list_item.xml +++ b/app/src/main/res/layout/history_list_item.xml @@ -31,8 +31,13 @@ android:layout_height="wrap_content" android:layout_marginTop="8dp" android:layout_marginStart="16dp" + android:layout_marginEnd="20dp" android:textColor="@color/history_title" + android:textAlignment="viewStart" android:textSize="18sp" + android:singleLine="true" + android:ellipsize="end" + app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toEndOf="@id/history_favicon" app:layout_constraintTop_toTopOf="parent" />