是否有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);
答案 0 :(得分:0)
你不能用XML做到这一点:)