I have a TextView in my layout which is wrap_content in layout_width. It is limited to maximum of 15 characters so I\'m using maxLength.
I need to end this TextView
You can use
android:maxWidth="100dp" android:maxLines="1" android:ellipsize="end"
Only this works for me.