From 0c37827fb0eea00abea770a9d9a6a9a1426f9fbc Mon Sep 17 00:00:00 2001 From: Sylvia van Os Date: Mon, 11 Nov 2024 18:39:28 +0100 Subject: [PATCH] Limit max line count to 5 on main view This prevents cards with very long notes to take up the entire screen or more. This effect is worse with more columns. --- app/src/main/res/layout/loyalty_card_layout.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/main/res/layout/loyalty_card_layout.xml b/app/src/main/res/layout/loyalty_card_layout.xml index d9ad60140..3c6f67148 100644 --- a/app/src/main/res/layout/loyalty_card_layout.xml +++ b/app/src/main/res/layout/loyalty_card_layout.xml @@ -151,6 +151,8 @@ android:layout_marginEnd="8dp" android:layout_marginBottom="4dp" android:textAppearance="?attr/textAppearanceBody2" + android:maxLines="5" + android:ellipsize="end" android:visibility="gone" tools:visibility="visible" app:layout_constraintTop_toBottomOf="@+id/store"