Android TextView跑马灯效果

来源:互联网 发布:dnf帐号数据异常 编辑:程序博客网 时间:2024/04/30 09:15

前言

  这个效果在两周前搜索过,网上倒是有转载,可恨的是转载之后本人有测试过?!N多人都在后面跟帖没效果! 后来没办法临时用定时器来刷的。

 

文章

  1.  Ellipsize not working for textView inside custom listView

  2.  ScrollTextView - scrolling TextView for Android

 

声明

  欢迎转载,但请保留文章原始出处:) 

    博客园:http://www.cnblogs.com

    农民伯伯: http://www.cnblogs.com/over140/     

 

正文

   本文得益于文章1的提示,虽然没全看明白,但是看见代码就复制下来然后测试,果然给我撞出来了- - #。

  一、效果图

     

  二、实现代码:

复制代码
    <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、模拟器。

 

结束

  出来写文章,即使是转载也得负责。文章2为自定义控件,大家可以参考一下。

原文地址:点击打开链接

原创粉丝点击