我在android中切换图像时遇到问题。我想创建动画,当我点击图片时,他旋转360度,当他在一半时,这意味着180张图片在另一张图片上打开。图像在imageView中,我有onClick方法。此时我点击其他图片图片开关,然后动画开始。当动画持续时间为50%时,我想用其他图像进行变换。 这是我的旋转XML:
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false">
<rotate
android:fromDegrees="0"
android:toDegrees="360"
android:pivotX="100%"
android:duration="1000"
/>
当我开始动画时如何切换图像?这可能吗?
答案 0 :(得分:1)
也许尝试这样的事情:
ImageView img = (ImageView)findViewById(R.id.XXXXXX);
img.startAnimation(a);
Animation a = AnimationUtils.loadAnimation(this, "your animation");
a.setAnimationListener(new AnimationListener()
{
@Override
public void onAnimationEnd(Animation animation)
{
// change image here img.setImage....
}
@Override
public void onAnimationStart(Animation animation){}
@Override
public void onAnimationRepeat(Animation animation){}
});
但是如果你想在半动画中改变它,你应该有两个动画,