What I am trying to do
I am trying to have a TextView with
android:ellipsize="end"
android:maxLines="3"
that instead of the "..." has a "... Show More" at the end.
Where I am
If the TextView would be single line this would be easy as I could use 2 TextViews, but I need it to have multiple lines and the "Show More" needs to be inline.
I have been searching for a way to change the ellipsis character that is added at the end but could not find anything.
The only solution I can think of is giving up on the automatic ellipsis, measure text and add the "... Show More" from code.
The question
Is there a way to replace what Android adds at the end (the "...") with something custom?