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
This will solve your problem, Use ellipsize Property in your XML Code
ellipsize
android:ellipsize="end" android:maxEms="15" android:singleLine="true"
Edit: singleLine is deprecated. Use maxlines="1" instead.
singleLine
maxlines="1"