android跑马灯文字效果

在layout里面进行配置

  1. <TextView    
  2.  android:layout_width="200dip"   
  3.  android:layout_height="wrap_content"   
  4.  android:text="1231231242342342342sfsdfsdfsdffqwerwerfwf"  
  5.  android:singleLine="true"  
  6.  android:ellipsize="marquee"  
  7.  android:focusableInTouchMode="true"  
  8.  android:marqueeRepeatLimit="1"  
  9.  android:focusable="true"  
  10.  android:scrollHorizontally="true"  
  11. />  


1、指定宽度

2、单行

3、android:ellipsize="marquee":超长滚动

4、android:focusableInTouchMode="true"   android:focusable="true"

5、android:marqueeRepeatLimit="1"   滚动次数, marquee_forever无限次数

6、android:scrollHorizontally="true"

posted @ 2013-07-27 03:11  山顶的鱼  阅读(170)  评论(0编辑  收藏  举报