我有一个 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:interpolator
值translate
仍然使用某种加速配置文件。
答案 0 :(得分:0)
尝试使用@android:anim/linear_interpolator
作为插补器。
包含与常见动画师相对应的可用xml资源列表的源:http://developer.android.com/guide/topics/resources/animation-resource.html#Interpolators