首页 > 移动平台 > 详细

Android:TextView文字跑马灯的效果实现

时间:2014-12-01 22:22:33      阅读:447      评论:0      收藏:0      [点我收藏+]

解决TextView文字显示不全的问题。

  1. 简单设置跑马灯的效果:

<TextView

android:id="@+id/textView"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:ellipsize="marquee"

android:focusable="true"

android:focusableInTouchMode="true"

android:text="@string/hello_world"

android:singleLine="true" />

2、此方法存在一个问题,多个TextView的话,只有一个显示跑马灯的效果,解决办法是继承TextView类,重写isFocused方法,使之返回真

Android:TextView文字跑马灯的效果实现

原文:http://www.cnblogs.com/freeabyss/p/4136043.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!