[Android]TextView跑马灯效果

来源:互联网 发布:宁夏干部网络培训官网 编辑:程序博客网 时间:2024/04/30 13:30

一、效果图

     

  二、实现代码:

复制代码
    <</span>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
="这才是真正的文字跑马灯效果"
        
>
    
</</span>TextView>
复制代码

    代码说明:经测试与转载文章区别主要在于这里有设置android:focusableInTouchMode

原创粉丝点击