您好,登錄后才能下訂單哦!
在 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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。