gpt4 book ai didi

android - 如何旋转图像并最终使用动画更改图像

转载 作者:行者123 更新时间:2023-11-29 20:58:53 24 4
gpt4 key购买 nike

正如标题所说,我正在尝试在 imageview 上执行动画效果,点击 Button 图像开始旋转,在 结束时动画效果 图像变为另一个图像

最佳答案

res/anim 中的 Animation rotation.xml 是这样的(根据您的特定旋转风格调整参数):

 <?xml version="1.0" encoding="utf-8"?>

<set xmlns:android="http://schemas.android.com/apk/res/android">
<rotate android:duration="300"
android:startOffset="0"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="360"
android:fromDegrees="0"
></rotate>
</set>

在 Activity 中是这样的:

Button yourButton=(Button) findViewById(R.id.yourButton);

yourButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Animation animation = AnimationUtils.loadAnimation(yourActivity, R.anim.rotation);

animation.setAnimationListener(new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {

}

@Override
public void onAnimationEnd(Animation animation) {
v.setBackgroundResource(R.drawable.anotherImage);
}

@Override
public void onAnimationRepeat(Animation animation) {

}
});

v.startAnimation(animation);
}
});

编辑:除非轮换你的意思是“翻转”?也许还可以检查一下:http://developer.android.com/training/animation/cardflip.html

关于android - 如何旋转图像并最终使用动画更改图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26794975/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com