limit headline row titles to 3 lines

This commit is contained in:
Andrew Dolgov 2015-07-17 10:44:38 +03:00
parent 1264f3043c
commit 0c72504421
2 changed files with 6 additions and 2 deletions

View File

@ -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"

View File

@ -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"