ฉันกำลังพยายามสร้างแอนิเมชั่นง่ายๆที่จะเล่นซ้ำหลาย ๆ ครั้ง (หรือไม่สิ้นสุด)
ดูเหมือนว่าandroid:repeatCount
จะไม่ทำงาน!
นี่คือแหล่งข้อมูลภาพเคลื่อนไหวของฉันจาก/res/anim/first_animation.xml
:
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false"
android:repeatCount="infinite"
>
<scale
android:interpolator="@android:anim/decelerate_interpolator"
android:duration="500"
android:fromXScale="1.0"
android:fromYScale="1.0"
android:toXScale="1.2"
android:toYScale="1.2"
android:pivotX="50%"
android:pivotY="50%"
android:fillAfter="false" />
<scale
android:interpolator="@android:anim/accelerate_interpolator"
android:startOffset="500"
android:duration="500"
android:fromXScale="1.2"
android:fromYScale="1.2"
android:toXScale="1.0"
android:toYScale="1.0"
android:pivotX="50%"
android:pivotY="50%"
android:fillAfter="false" />
</set>
ก่อนอื่นควรปรับขนาดภาพจาก 1.0 ถึง 1.2 ขนาดใน 500 มิลลิวินาที
จากนั้นปรับขนาดกลับเป็น 1.0 ใน 500 มิลลิวินาที
นี่คือวิธีที่ฉันใช้:
Animation firstAnimation = AnimationUtils.loadAnimation(this, R.anim.first_animation);
imgView.startAnimation(firstAnimation);
มันทำให้รอบเดียวแล้วเสร็จ
มันสเกลขึ้นแล้วลดขนาด ans แล้วหยุด
ฉันจะทำงานนี้ให้สำเร็จตามที่ตั้งใจไว้ได้อย่างไร?