本文实例为大家分享了Android TextView实现跑马灯效果的具体代码,供大家参考,具体内容如下
当Layout中只有一个TextView需要实现跑马灯效果时,操作如下。
在Layout的TextView配置文件中增加
android:ellipsize=”marquee”
android:focusable=”true”
android:focusableInTouchMode=”true”
android:singleLine=”true”
以上四条属性,即可实现跑马灯效果。
当有多个TextView想实现跑马灯效果