视频直播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省略号代替多出数据,更多内容欢迎关注之后的文章
标签:省略号,app,源码,Android,android,TextView From: https://www.cnblogs.com/yunbaomengnan/p/17059706.html