在Android中如何設(shè)置AnimationDrawable的動(dòng)畫

小樊
91
2024-08-15 09:47:36
欄目: 編程語言

要設(shè)置AnimationDrawable的動(dòng)畫,首先需要在res/drawable文件夾下創(chuàng)建一個(gè)XML文件來定義動(dòng)畫幀序列。例如,創(chuàng)建一個(gè)名為animation.xml的文件,定義如下:

<animation-list android:id="@+id/selected" android:oneshot="false">
    <item android:drawable="@drawable/frame1" android:duration="50" />
    <item android:drawable="@drawable/frame2" android:duration="50" />
    <item android:drawable="@drawable/frame3" android:duration="50" />
    <!-- 添加更多的動(dòng)畫幀 -->
</animation-list>

然后在代碼中加載AnimationDrawable并設(shè)置到ImageView中:

// 加載AnimationDrawable
ImageView imageView = findViewById(R.id.imageView);
AnimationDrawable animation = (AnimationDrawable) getResources().getDrawable(R.drawable.animation);

// 將AnimationDrawable設(shè)置到ImageView中
imageView.setBackground(animation);

// 開始動(dòng)畫
animation.start();

這樣就可以在ImageView中顯示AnimationDrawable的動(dòng)畫了。

0