效果图
导入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.