3

我已经阅读了几篇文章,但没有一篇文章使用动画列表解决了我的问题。我已经知道我无法在 onCreate() 中启动动画,所以我将它放在 onClick() 中,但它仍然无法正常工作......

public class Main extends Activity implements OnClickListener {
/** Called when the activity is first created. */

AnimationDrawable explosionAnimation;
Button btnGo;
ImageView explosionImage;

@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);

  explosionImage = (ImageView) findViewById(R.id.balloon);
  explosionImage.setBackgroundResource(R.drawable.explosion);
  explosionAnimation = (AnimationDrawable) explosionImage.getBackground();

  btnGo = (Button)findViewById(R.id.btnGo);
  btnGo.setOnClickListener(this);
}

@Override
public void onClick(View v) {
    // TODO Auto-generated method stub
    switch(v.getId())
    {
    case R.id.btnGo:
        explosionAnimation.start();
        break;
    }
}
} 

爆炸.xml

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" 
android:oneshot="true">

<item android:drawable="@drawable/explode_1" android:duration="200" />
<item android:drawable="@drawable/explode_2" android:duration="200" />
<item android:drawable="@drawable/explode_3" android:duration="200" />
<item android:drawable="@drawable/explode_4" android:duration="200" />
<item android:drawable="@drawable/explode_5" android:duration="200" />

</animation-list>

主要的.xml

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

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello" />

<ImageView
    android:id="@+id/balloon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_marginTop="30dp"
    android:src="@drawable/balloon" />

<Button 
    android:id = "@+id/btnGo"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_marginTop="10dp"
    android:text="Play"
    />

</LinearLayout>
4

3 回答 3

0

好吧,我建议您将其放在线程内的活动的 onWindowsFocusChange 方法中。像那样:

@Override
public void onWindowFocusChanged(boolean hasFocus)
{
  super.onWindowFocusChanged(hasFocus);
  delayedactivation(R.drawable.animationname, yourview, delay);
} 

public void delayedActivation(final int res, final View view, final int delay)
{
  final Handler handle = new Handler();
  Thread t = new Thread() 
  {
     @Override
     public void synchronized run() 
     {
       try
       {
         handle.postDelayed(new Runnable() 
         {  
           @Override
           public void run() 
           {    
              view.setBackgroundResource(res);
              anime = (AnimationDrawable) getResources().getDrawable(res);
              anime = (AnimationDrawable)view.getBackground();
              anime.start();            
           }
          },delay);
         }catch(Exception e)
         {
           e.printStackTrace();
         }
     };
 };
 t.start();     
}
于 2013-05-23T02:23:13.437 回答
0

我认为你应该更换

explosionAnimation.start();

explosionImage startAnimation(explosionAnimation);

因为在您的声明中,没有指定“您要在哪个视图上开始动画!”

于 2012-11-29T04:13:41.547 回答
0

在您的 main.xml 上,将图像视图 src 更改为android:src="@drawable/explosion"

然后在你的 Main.java

改变

explosionAnimation=(AnimationDrawable)((ImageView) explosionImage).getDrawable();

试试看。它应该工作

于 2012-11-29T04:15:32.093 回答