具有恒定速度(零加速度)的Android动画资源?

时间:2014-12-29 02:14:57

标签: android android-animation android-resources

我有一个 anim 资源,可以滚动TextView(点数屏幕)。

<set xmlns:android="http://schemas.android.com/apk/res/android">
  <translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="50000"
    android:fromYDelta="200"
    android:interpolator="@android:interpolator/linear"
    android:repeatCount="infinite"
    android:repeatMode="restart"
    android:toYDelta="-10000" />
</set>

我想拥有恒定的转换速度和零加速度(在整个动画周期内速度相同)。我找不到允许的android:interpolator值。没有android:interpolatortranslate仍然使用某种加速配置文件。

1 个答案:

答案 0 :(得分:0)

尝试使用@android:anim/linear_interpolator作为插补器。

包含与常见动画师相对应的可用xml资源列表的源:http://developer.android.com/guide/topics/resources/animation-resource.html#Interpolators