1

我正在尝试逐帧动画,但它给了我一个关闭的力,我不确定它为什么给我一个关闭的力。在我看来一切都很好。

这是我的代码,希望有人可以提供帮助?提前致谢。

动画测试.java

import android.app.Activity;
import android.graphics.drawable.AnimationDrawable;
import android.graphics.drawable.BitmapDrawable;
import android.os.Bundle;
import android.widget.ImageView;

public class AnimationTest extends Activity {

AnimationDrawable animation;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    AnimationDrawable animation = new AnimationDrawable();
    animation.addFrame(getResources().getDrawable(R.drawable.up), 500);
    animation.addFrame(getResources().getDrawable(R.drawable.down), 500);

    animation.setOneShot(false);

    ImageView imageAnim =  (ImageView) findViewById(R.id.imageView1);
    imageAnim.setBackgroundDrawable(animation);

    // start the animation!
    animation.start();
} 

}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">

    <ImageView android:id="@+id/imageView1"
        android:src="@drawable/down"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"/>
</LinearLayout>
4

2 回答 2

1

您正在 onCreate 方法中启动动画,这将不起作用,因为您的活动尚未显示,请改用延迟的可运行文件或 clickListener。

您可以使用以下代码测试动画:

// inside onCreate
   setContentView(R.layout.activity_main);


final AnimationDrawable animation = new AnimationDrawable();
animation.addFrame(getResources().getDrawable(R.drawable.up), 500);
animation.addFrame(getResources().getDrawable(R.drawable.down), 500);

animation.setOneShot(false);

ImageView imageAnim =  (ImageView) findViewById(R.id.imageView1);
imageAnim.setBackgroundDrawable(animation);
Handler handler = new Handler();
handler.postDelayed(new Runnable(){

public void run(){

animation.start();

}
}, 3000);

请确保您的 ImageView 有大小,并且没有设置 src 以查看发生了什么,在您的布局 xml 文件中执行以下操作:

    android:layout_width="50dp"
    android:layout_height="50dp"

并删除 src 属性(如果有)

于 2013-01-30T11:50:03.790 回答
1

您不能从 onCreate 方法开始动画。还没有视图,也看不到活动。阅读本文并稍微更改您的代码,它将起作用。但愿如此 )

于 2013-01-30T11:48:20.090 回答