XML相当于Android的loadAnimation

时间:2011-03-15 01:59:20

标签: android animation

是否有Android的loadAnimation功能的XML等价物?我想指定要应用于布局XML中的视图的动画。

我在动画资源中定义了一个动画:

<?xml version="1.0" encoding="utf-8"?>
<rotate
    xmlns:android="http://schemas.android.com/apk/res/android"    
    android:fromDegrees="0"
    android:toDegrees="359"
    android:pivotX="50%"
    android:pivotY="50%"
    android:duration="10000"
    android:repeatCount="infinite" />

如何在我的布局XML中执行以下操作?

    ImageButton main_button = (ImageButton)this.findViewById(R.id.imageButton1);
    Animation rotateAnimation = AnimationUtils.loadAnimation(this, R.anim.my_rotate);
    main_button.startAnimation(rotateAnimation);

1 个答案:

答案 0 :(得分:0)

你不能用XML做到这一点:)