溫馨提示×

如何在Android項目中創(chuàng)建AnimationDrawable

小樊
85
2024-08-15 09:45:36
欄目: 編程語言

要在Android項目中創(chuàng)建AnimationDrawable,可以按照以下步驟進行:

  1. 在res/drawable文件夾中創(chuàng)建一個xml文件,用于定義動畫幀序列。例如,創(chuàng)建一個名為animation.xml的文件。

  2. 在該xml文件中,定義一個標簽,并在其中添加標簽來定義每一幀的圖片資源和持續(xù)時間。示例代碼如下:

<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="false">
    <item
        android:drawable="@drawable/frame1"
        android:duration="100"/>
    <item
        android:drawable="@drawable/frame2"
        android:duration="100"/>
    <item
        android:drawable="@drawable/frame3"
        android:duration="100"/>
</animation-list>
  1. 在activity中使用AnimationDrawable類來加載并播放動畫。示例代碼如下:
ImageView imageView = findViewById(R.id.imageView);
AnimationDrawable animationDrawable = (AnimationDrawable) getResources().getDrawable(R.drawable.animation);
imageView.setBackground(animationDrawable);
animationDrawable.start();
  1. 在需要的時候可以停止動畫,示例代碼如下:
animationDrawable.stop();

通過以上步驟,就可以在Android項目中創(chuàng)建并播放AnimationDrawable動畫了。

0