[Android1.5]TextView跑马灯效果
来源:农民伯伯 责任编辑:栏目编辑 发表时间:2013-07-02 04:11 点击:次
前言
这个效果在两周前搜索过,网上倒是有转载,可恨的是转载之后本人有测试过?!N多人都在后面跟帖没效果! 后来没办法临时用定时器来刷的。
文章
1. Ellipsize not working for textView inside custom listView
2. ScrollTextView - scrolling TextView for Android
声明
欢迎转载,但请保留文章原始出处:)
农民伯伯: 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>
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为自定义控件,大家可以参考一下。
本文出自 “农民伯伯” 博客,请务必保留此出处http://over140.blog.51cto.com/2543800/582239
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>