一、效果图
二、实现代码:
<
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 >
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跑马灯
本文转自博客园农民伯伯的博客,原文链接:[Android1.5]TextView跑马灯效果,如需转载请自行联系原博主。