Merge pull request #5032 from peakvalleytech/display-full-podcast-title

Increase podcast title max lines to 6 in info fragment.
This commit is contained in:
ByteHamster 2021-03-13 09:45:02 +01:00 committed by GitHub
commit 7878d0e140
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -222,6 +222,7 @@ public class FeedInfoFragment extends Fragment implements Toolbar.OnMenuItemClic
.into(imgvBackground);
txtvTitle.setText(feed.getTitle());
txtvTitle.setMaxLines(6);
String description = HtmlToPlainText.getPlainText(feed.getDescription());