Limit numbers of lines in TextView

后端 未结 7 1411
忘掉有多难
忘掉有多难 2021-02-01 01:14

I have a scrollable textView, and I want to limit the number of lines displayed, however xml properties are not working :



        
7条回答
  •  耶瑟儿~
    2021-02-01 02:12

    Try using this.

    android:maxLines="12"
    android:ellipsize="end"
    

    In the end it add ... if extra text available.

    You can also use

    android:ellipsize="marquee" 
    

    It will reduce extra text from end that is not like a word.

提交回复
热议问题