TextView Ellipsize (…) not working

后端 未结 6 2087
醉梦人生
醉梦人生 2020-12-29 20:55

I want to have a single lined TextView to show up 3 dots at the end when the text is longer than the TextView. I don\'t know why - but I don\'t get

6条回答
  •  执笔经年
    2020-12-29 21:41

    android:id="@+id/lName" android:layout_width="150dp"
        android:layout_height="wrap_content"
        android:ellipsize="end"
        android:singleLine="true"
        android:text="Avinljhakjhsajkhakjshda"
        android:textSize="16sp"
    

提交回复
热议问题