如何android textview marquee getDuration?

how to android textview marquee getDuration?

我有时间多试试TextView跑马灯动画滚动 需要跑马灯动画时长,完成Listener 请帮助我...

  1. 选取框滚动时间
  2. 跑马灯滚动结束点或界面监听器

您可以在 anim res/anim/marquee.xml

中像这样创建动画和动画时间
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate
        android:fromXDelta="100%"
        android:toXDelta="-100%"
        android:duration="10000"
        android:repeatCount="infinite"
        android:repeatMode="restart"
        android:interpolator="@android:anim/linear_interpolator"/>
</set>

并在您使用 textView

的地方调用它
 TextView myTextView = (TextView) findViewById(R.id.myTextView);
 Animation marquee = AnimationUtils.loadAnimation(this, R.anim.marquee);
 myTextView.startAnimation(marquee);