0

我正在使用代码在堆栈溢出上发布的 android 应用程序的初始屏幕代码。我无法获得输出。这是代码。

package com.splash;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
public class SplashScreen extends Activity {

        private static final int SPLASH_DISPLAY_TIME = 3000;

        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.splash);

            new Handler().postDelayed(new Runnable() {

                public void run() {

                    Intent mainIntent = new Intent(Splashscreen.this,
                            MainActivity.class);
                    Splashscreen.this.startActivity(mainIntent);

                    Splashscreen.this.finish();
                    overridePendingTransition(R.anim.mainfadein,
                            R.anim.splashfadeout);
                }
            }, SPLASH_DISPLAY_TIME);
        }
    }
}

这是 splash.xml 文件;

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/splash" />
</LinearLayout>

请告诉我如何解决它。我还有用于闪屏图像的淡入淡出 xml 文件。

4

3 回答 3

0

最有可能的是,您没有“MainActivity”类。检查它的名称是否正确。并确保它在正确的包中并添加到清单中。

于 2013-02-18T16:55:07.553 回答
0

确保将 MainActivity 添加到 AndroidManifest.xml。从 logcat 发布异常堆栈跟踪也会有很大帮助。

于 2012-06-10T10:41:17.007 回答
0

public class SplashScreen extends Activity {在您的代码中两次..

让它单身。

package com.splash;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
public class SplashScreen extends Activity {

        private static final int SPLASH_DISPLAY_TIME = 3000;

        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.splash);

            new Handler().postDelayed(new Runnable() {

                public void run() {

                    Intent mainIntent = new Intent(Splashscreen.this,
                            MainActivity.class);
                    Splashscreen.this.startActivity(mainIntent);

                    Splashscreen.this.finish();
                    overridePendingTransition(R.anim.mainfadein,
                            R.anim.splashfadeout);
                }
            }, SPLASH_DISPLAY_TIME);
        }
    }
于 2012-06-10T09:12:18.110 回答