安卓中TextView跑马灯效果怎么显示
发布网友
发布时间:2022-04-20 04:18
我来回答
共1个回答
热心网友
时间:2023-06-30 15:57
textview控件中添加如下属性可以实现跑马灯效果:
android:layout_height="wrap_parent"
android:marqueeRepeatLimit="1"//表示为滚动显示一次
android:singleLine="true" //表示单行显示
android:ellipsize="marquee" //表示滚动效果
android:focusableInTouchMode="true"
android:focusable="true"// 在控件获得Focus时才会显示走马灯效果