标签:android blog http ar sp art 问题 log 代码
textview中有个内容过长加省略号的属性,即ellipsize,可以较偷懒地解决这个问题,哈哈~
用法如下:
在xml中
android:ellipsize = "end" 省略号在结尾
android:ellipsize = "start" 省略号在开头
android:ellipsize = "middle" 省略号在中间
android:ellipsize = "marquee" 跑马灯
最好加一个约束android:singleline = "true"
当然也可以用代码语句
tv.setEllipsize(TextUtils.TruncateAt.valueOf("END"));
tv.setEllipsize(TextUtils.TruncateAt.valueOf("START"));
tv.setEllipsize(TextUtils.TruncateAt.valueOf("MIDDLE"));
tv.setEllipsize(TextUtils.TruncateAt.valueOf("MARQUEE"));
最好再加一个约束tv.setSingleLine(true);
不仅对于textview有此属性,对于editext也有,不过它不支持marquee
或者用substring( (int start, int end);
str.substring(0, str.length()>30?30str.length())+"......"
如果大于30个字就只显示30字,不到30字则全显示出来
转自:
http://blog.csdn.net/imdxt1986/article/details/6942743
(转) TextView ellipsize设置(省略号的问题)
标签:android blog http ar sp art 问题 log 代码
原文地址:http://www.cnblogs.com/rockylearnstodevelop/p/4072695.html