Android TextView实现跑马灯效果

2018-10-12  本文已影响0人  菁西
<TextView
android:id="@+id/finish_tv"
android:layout_width="200dp"//宽度必须比TextView内容所占宽度要小,否则没有效果
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:ellipsize="marquee"//设置TextView为跑马灯的效果
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:singleLine="true"//设置文字为单行
android:text="恭喜您!顺利完成游戏!   恭喜您!顺利完成游戏! 恭喜您!顺利完成游戏!"
android:textColor="#ccff00" />

posted @ 2014-03-03 07:44

上一篇下一篇

猜你喜欢

热点阅读