How can I show ellipses on my TextView if it is greater than the 1 line?

后端 未结 7 1293
终归单人心
终归单人心 2020-11-30 22:19

I have the following Layout which does not work:



        
7条回答
  •  眼角桃花
    2020-11-30 22:34

    This is a common problem. Try using the following:

    android:scrollHorizontally="true"
    android:ellipsize="end" 
    android:maxLines="1"
    

    .............. the scrollHorizontally is the "special sauce" that makes it work.

提交回复
热议问题