How can I show ellipses on my TextView if it is greater than the 1 line?

This is a common problem. Try using the following:

android:scrollHorizontally="true"
android:ellipsize="end" 
android:maxLines="1"

………….. the scrollHorizontally is the “special sauce” that makes it work.

Leave a Comment