Text does not ellipsize

前端 未结 13 1406
隐瞒了意图╮
隐瞒了意图╮ 2020-12-25 11:43

I have a TextView set to ellipsize but when I put the text in it doesn\'t do so. Any ideas?



        
13条回答
  •  情歌与酒
    2020-12-25 12:17

    I think you need to specify an absolute width for it to work.

    android:layout_width="100dip"
    

    or

    android:layout_width="fill_parent"
    

提交回复
热议问题