帧动画只开始一次

Frame Animations only start one time

我用下面的代码创建了一个帧动画。我希望每次单击按钮时动画都会启动,但它 仅在第一次工作

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/frame"
        />

    <Button
        android:layout_centerInParent="true"
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Start Animation"
        />

</RelativeLayout>

frame.xml

<animation-list
    android:oneshot="true"
    xmlns:android="http://schemas.android.com/apk/res/android"
    >
    <item android:drawable="@drawable/ic_heart_0" android:duration="300" />
    <item android:drawable="@drawable/ic_heart_50" android:duration="300" />
    <item android:drawable="@drawable/ic_heart_75" android:duration="300" />
    <item android:drawable="@drawable/ic_heart_100" android:duration="300" />
    <item android:drawable="@drawable/ic_heart_0" android:duration="300" />
</animation-list>

Activity

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                startAnimation();
            }
        });
    }

    public void startAnimation(){
         ImageView img = (ImageView) findViewById(R.id.image);
        ((AnimationDrawable) img.getBackground()).start();
    }
}

如何让点击按钮时动画开始播放? 任何帮助或建议将不胜感激。

您在 MainActivity 中尝试 stop() 300 持续时间后的动画。我认为它可能无法识别您是否停止。它在 300 后停止,对吗?但我想也许应用程序会识别它仍在启动。

这是我找到的一种解决方案。如果它是 运行,我会在再次启动之前尝试停止动画。我认为动画即使经过所有帧也不会停止

if(((AnimationDrawable) imageView.getBackground()).isRunning()){
      ((AnimationDrawable) imageView.getBackground()).stop();
}
((AnimationDrawable) imageView.getBackground()).start();

为了运行再"one shot animation":

private void runAnimation(ImageView imageView) {
    AnimationDrawable animation = (AnimationDrawable) imageView.getBackground();
    animation.setVisible(true, true);
    animation.start();
}