在 Android 中,要实现按钮(Button)的动画序列播放,可以使用 AnimationSet
类来组合多个动画
首先,在 res/anim
目录下创建一个新的 XML 文件,例如 button_animation.xml
。如果 anim
目录不存在,请创建它。
在 button_animation.xml
文件中,定义一个 AnimationSet
,并添加多个动画。例如,我们可以添加一个平移动画和一个缩放动画:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false">
<translate
android:duration="1000"
android:fromXDelta="0%"
android:toXDelta="50%"
android:fillAfter="true" />
<scale
android:duration="1000"
android:fromXScale="1.0"
android:toXScale="1.5"
android:fromYScale="1.0"
android:toYScale="1.5"
android:pivotX="50%"
android:pivotY="50%"
android:fillAfter="true" />
</set>
Java 示例:
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
// ...
Button button = findViewById(R.id.my_button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Animation animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.button_animation);
button.startAnimation(animation);
}
});
Kotlin 示例:
import android.view.animation.AnimationUtils
// ...
val button: Button = findViewById(R.id.my_button)
button.setOnClickListener {
val animation: Animation = AnimationUtils.loadAnimation(applicationContext, R.anim.button_animation)
button.startAnimation(animation)
}
现在,当用户点击按钮时,将按顺序播放平移和缩放动画。你可以根据需要添加更多动画效果。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。