0

我的应用程序初始屏幕设置为让一个图像淡入,然后是另一个,然后在第二个完成后,它被设置为启动我的主要活动。

当我的第二张图像快要淡入时,它就会崩溃。

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

}

}
4

1 回答 1

0

我敢打赌这是两件事之一。

Main.class 不存在

或者

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

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

<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>
于 2012-09-20T21:13:13.670 回答