How to set maximum characters per line for text view in android

后端 未结 7 2005
半阙折子戏
半阙折子戏 2020-12-16 15:09

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

7条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-16 15:54

    Use android:maxLength="" to limit the text length

    
    

    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?"

提交回复
热议问题