我已经阅读了几篇文章,但没有一篇文章使用动画列表解决了我的问题。我已经知道我无法在 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>