您的位置:首页 > 移动开发 > Android开发

[Android1.5]TextView跑马灯效果

2010-08-20 17:12 351 查看
前言

  这个效果在两周前搜索过,网上倒是有转载,可恨的是转载之后本人有测试过?!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、模拟器。

三、后期维护

3.1 2013-07-01

本博后续文章:【Android】不依赖焦点和选中的TextView跑马灯

结束

  出来写文章,即使是转载也得负责。文章2为自定义控件,大家可以参考一下。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: