视频直播app源码,Android TextView省略号代替多出数据

视频直播app源码,Android TextView省略号代替多出数据

1、xml实现

 

android:maxLines=”1”
android:ellipsize=”end”
<TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="40dp"
        android:text="文件名称"
        android:textSize="16sp"
        android:maxLines="1"
        android:ellipsize="end"/>

2、代码实现

 

tv.setMaxLines(1);     
tv.setEllipsize(TextUtils.TruncateAt.valueOf("END"));

 

以上就是 视频直播app源码,Android TextView省略号代替多出数据,更多内容欢迎关注之后的文章

 

posted @ 2023-01-18 14:09  云豹科技-苏凌霄  阅读(42)  评论(0)    收藏  举报