-1

例如,我有 xml 文件:

<set
android:fromDegrees="0"
android:toDegrees="360"
android:pivotX="100%"
android:pivotY="100%"

android:duration="1500"
android:startOffset="1500" />


<translate
android:fromXDelta="-50%p"
android:toXDelta="100%"
android:duration="2000"
 />

... .

那么,如何使用我的类 .java 进行动态处理?谢谢

4

1 回答 1

0

我从这个博客得到了答案。只需将“my_xml_file”更改为您的动画名称。

Animation animation = AnimationUtils.loadAnimation(this,R.anim.my_xml_file);
myLayout.startAnimation(animation);
于 2012-08-05T15:43:36.337 回答