垂直Maquee的TextView(Vertical Maquee TextView)

2019-11-04 10:07发布

从prevois后, 有没有一种方法,使ellipsize =“字幕”永远卷轴? 我创建垂直maquee TextView的。 但我的问题是我怎么能装时,它移动到一个点,比简历约5秒的动画,并完成动画。

例如:

mAnimation2 = new TranslateAnimation(0f, 0f, 20f, -20f);
mAnimation2.setDuration(5000);
mAnimation2.setStartOffset(5000); 
mAnimation2.setRepeatMode(Animation.RESTART);
TextView tv = (TextView)findViewById(R.id.text); tv.setAnimation(mAnimation2);

我已经定义了上述动画并将其设置为TextView的。 我怎样才能停止动画5秒时的TextView在坐标(0,0),比延续了动画?

Answer 1:

你可以利用这个MarqueeView实施和定制它,你的愿望: http://b.ivity.asia/2010/12/01/extended-marquee-in-android/



文章来源: Vertical Maquee TextView