我的应用程序初始屏幕设置为让一个图像淡入,然后是另一个,然后在第二个完成后,它被设置为启动我的主要活动。
当我的第二张图像快要淡入时,它就会崩溃。
这是我的 SplashScreen 活动;
package com.example.gymbuddy;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.animation.Animation;
import android.view.animation.Animation.AnimationListener;
import android.view.animation.AnimationUtils;
import android.widget.ImageView;
public class SplashScreen extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splashscreen);
ImageView gym = (ImageView) findViewById(R.id.imageView1);
Animation fade1 = AnimationUtils.loadAnimation(this, R.anim.gym);
gym.startAnimation(fade1);
ImageView buddy = (ImageView) findViewById(R.id.imageView2);
Animation fade2 = AnimationUtils.loadAnimation(this, R.anim.buddy);
buddy.startAnimation(fade2);
fade2.setAnimationListener(new AnimationListener() {
public void onAnimationStart(Animation animation) {
}
public void onAnimationEnd(Animation animation) {
Intent intent = new Intent(SplashScreen.this, Main.class);
SplashScreen.this.startActivity(intent);
SplashScreen.this.finish();
}
public void onAnimationRepeat(Animation animation) {
}
});
}
@Override
public void onPause() {
ImageView gym = (ImageView) findViewById(R.id.imageView1);
gym.clearAnimation();
ImageView buddy = (ImageView) findViewById(R.id.imageView2);
buddy.clearAnimation();
}
}