[Android1.5]TextView跑马灯效果

来源:互联网 发布:手机淘宝官网找回密码 编辑:程序博客网 时间:2024/06/01 08:35
一、效果图

     

  二、实现代码:

    <TextView android:layout_width="100px"
        android:layout_height
="wrap_content"
        android:textColor
="@android:color/white" 
        android:ellipsize
="marquee" 
        android:focusable
="true" 
        android:marqueeRepeatLimit
="marquee_forever" 
        android:focusableInTouchMode
="true" 
        android:scrollHorizontally
="true"
        android:text
="这才是真正的文字跑马灯效果"
        
>
    
</TextView>

    代码说明:

      a).  经测试与转载文章区别主要在于这里有设置android:focusableInTouchMode

      b).  测试环境为Android1.5、模拟器。