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

后端 未结 7 2008
半阙折子戏
半阙折子戏 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条回答
  •  Happy的楠姐
    2020-12-16 15:54

    Set these parameters of TextView:

    android:layout_width="110dip"
    android:singleline="false"
    

    Experiment with the value of android:layout_width to find the value that fits your needs.

提交回复
热议问题