Hiii all, this may be a possible duplicate but I couldn\'t find solution for my problem.I need to limit the number of characters per line when displaying on the textview and
Use android:maxLength="" to limit the text length
android:maxLength=""
You can also use another property as follows:
android:ellipsize="end" android:maxLines="1"
show result :
"Hello How are ..." instead of "Hello How are you?"