I have a TextView that I want to limit characters of it. Actually, I can do this but the thing that I\'m looking for is how to add three dots (...) at the end o
TextView
You need to add following lines into your layout for the textview
android:maxLines="1" android:ellipsize="end" android:singleLine="true"
Hope this works for you.