Android文本动画创建和添加

时间:2017-10-25 23:39:27

标签: android xml animation

我想为我的textview创建一个逐字显示的动画(每个单词需要100毫秒才能显示),每个单词也有一个背景(不是所有{{1}的背景}})

这样的事情: FontExample

我知道我应该使用xml作为动画但是idk如何让每个单词都显示在另一个之后

谢谢!

1 个答案:

答案 0 :(得分:1)

<objectAnimator
    android:propertyName="string"
    android:duration="int"
    android:valueFrom="float | int | color"
    android:valueTo="float | int | color"
    android:startOffset="int"
    android:repeatCount="int"
    android:repeatMode=["repeat" | "reverse"]
    android:valueType=["intType" | "floatType"]/>

<animator
    android:duration="int"
    android:valueFrom="float | int | color"
    android:valueTo="float | int | color"
    android:startOffset="int"
    android:repeatCount="int"
    android:repeatMode=["repeat" | "reverse"]
    android:valueType=["intType" | "floatType"]/>

<set>
    ...
</set>

已编译的资源数据类型:     指向ValueAnimator,ObjectAnimator或AnimatorSet的资源指针。 资源参考:     在Java中:R.animator.filename     在XML中:@ [package:] animator / filename