【V5】垂直跑马灯

V5源码 180 2023-06-02 17:09  

效果图




 导入sdk

com.github.baixxx:VerticalMarqueeView:v1.3

创建新控件

com.bx.marqueeviewlibrary.MarqueeView


属性

id=v1
layout_width=match_parent
layout_height=wrap_content
app:mvInterval=1500
app:mvTextColor=#000
app:mvAnimDuration=800
app:mvTextSize=5sp


Java设置跑马灯文本

java {  final com.bx.marqueeviewlibrary.MarqueeView MarqueeView = (com.bx.marqueeviewlibrary.MarqueeView) findViewById(R.id.v1);  List<String> notices = new ArrayList<>();  notices.add("套马的汉子你威武雄壮");  notices.add("飞驰的骏马像疾风一样");  notices.add("一望无际的原野随你去流浪");  notices.add("你的心海和大地一样宽广");  MarqueeView.startMarquee(notices);}

附件隐藏

The attachment is hidden and you need to reply to the topic before it becomes visible.
admin 管理员 楼主
“我好不容易心动一次,却爱上了一个不属于我的人,是不是很讽刺又很可笑,明知是错的

全部回复

  3 正序

66

2023-6-19 0 0

666

2023-6-19 0 0

6

2023-6-19 0 0
Need Login