(Android学习)TextView跑马灯效果

<TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:singleLine="true"
        android:ellipsize="marquee"
        android:marqueeRepeatLimit="marquee_forever"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:text="跑马灯,就是类似于web一样,有一行字一直循环滚滚动这样,好吧还是看看 实现效果图,一看就懂的了~"/>

参考:
2.7 实现跑马灯效果的TextView

部分属性介绍:
TextView中文字的跑马灯效果实现,以及focusable,focusableInTouchMode属性介绍

猜你喜欢

转载自blog.csdn.net/weixin_45625639/article/details/123001344