summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xorg.fox.ttrss/src/main/res/layout/headlines_row.xml4
-rwxr-xr-xorg.fox.ttrss/src/main/res/layout/headlines_row_unread.xml4
2 files changed, 6 insertions, 2 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/headlines_row.xml b/org.fox.ttrss/src/main/res/layout/headlines_row.xml
index d44b0792..f06e1d40 100755
--- a/org.fox.ttrss/src/main/res/layout/headlines_row.xml
+++ b/org.fox.ttrss/src/main/res/layout/headlines_row.xml
@@ -73,7 +73,9 @@
android:text="Sample entry title"
android:textColor="?headlineExcerptTextColor"
android:textSize="18sp"
- android:textStyle="normal" />
+ android:textStyle="normal"
+ android:maxLines="3"
+ android:ellipsize="end" />
<LinearLayout
android:layout_width="match_parent"
diff --git a/org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml b/org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml
index dd991872..cca55565 100755
--- a/org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml
+++ b/org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml
@@ -74,7 +74,9 @@
android:text="Sample entry title"
android:textColor="?headlineUnreadTextColor"
android:textSize="18sp"
- android:textStyle="bold" />
+ android:textStyle="bold"
+ android:ellipsize="end"
+ android:maxLines="3" />
<LinearLayout
android:layout_width="match_parent"