android Textview 常见效果

1:跑马灯的效果

android:singleLine="true"
android:ellipsize="marquee"
android:focusableInTouchMode="true"
android:focusable="true"
android:marqueeRepeatLimit="marquee_forever"

  • android:singleLine=true 表示使用单行文字,多行文字也就无所谓使用Marquee效果了。
  • android:marqueeRepeatLimit,设置走马灯滚动的次数。
  • android:ellipsize,设置了文字过长时如何切断文字,可以有none, start,middle, end, 如果使用走马灯效果则设为marquee.
  • android:focusable,Android的缺省行为是在控件获得Focus时才会显示走马灯效果

2:超出几行点点的效果:
 android:maxLines="2"
 android:ellipsize="end"


3:自动链接的效果:
  android:autoLink="phone|email|map|web|all"



2:超出几行点点的效果:
第三方


android Textview 常见效果,布布扣,bubuko.com

android Textview 常见效果

上一篇:写个js动态调整图片宽高 (原创)


下一篇:Elasticsearch学习笔记3 -- 文档操作