Android的;申请已停止。简单的动画错误

时间:2012-09-20 20:54:55

标签: java android

我的应用程序启动画面设置为一个图像淡入,然后另一个图像,然后在第二个图像完成后,设置为启动我的主要活动。

一旦我的第二张图片几乎完成淡入,它就会崩溃。

这是我的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();

}

}

1 个答案:

答案 0 :(得分:0)

我愿意打赌这是两件事之一。

Main.class不存在

OR

Main.class未在您的清单中声明为活动。

你的清单中应该有这样的东西:

<activity android:name=".Main" android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
</activity>