Text does not ellipsize

前端 未结 13 1423
隐瞒了意图╮
隐瞒了意图╮ 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:15

    android:layout_width="wrap_content"
    

    will allow the TextView to expand as long as it needs to (including running off the screen). To make it ellipsize, you're going to have to set a width as citizen conn recommended, preferably with android:layout_width="fill_parent" instead of an absolute value.

    Additional hints: You'll also want to set the maxLines of the TextView (probably to 1), and to get the actual ellipsis ("...") to appear, you'll probably also have to set

    android:scrollHorizontally="true"
    

提交回复
热议问题