我已經在android開發人員網站上讀到了如何將圖像序列轉換爲動畫。但沒有顯示任何內容,無論是圖像而不是動畫。使用可繪製動畫顯示動畫
package org.example.anim;
import android.os.Bundle;
import android.app.Activity;
import android.graphics.drawable.AnimationDrawable;
import android.widget.ImageView;
public class MainActivity extends Activity {
AnimationDrawable frameAnimation;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ImageView img = (ImageView)findViewById(R.id.spinning_wheel_image);
img.setBackgroundResource(R.drawable.spin_animation);
// Get the background, which has been compiled to an AnimationDrawable
frameAnimation = (AnimationDrawable) img.getBackground();
// Start the animation (looped playback by default).
}
public void onWindowFocusChanged()
{
frameAnimation.start();
}
}
謝謝你的幫助,但我已經完全寫了我的動畫XML文件完全一樣你張貼。如果有任何其他問題可能與activitymain.xml。 – afom