0

5 秒後にメイン アクティビティにリダイレクトするスプラッシュ スクリーンをセットアップしましたが、アプリケーションは常にスプラッシュ スクリーンに留まり、リダイレクトされません。

私の中に次のコードがありますSplashActivity.Java

public class SplashActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.SplashActivity);
        Thread timer = new Thread() {
            public void run() {
                try {
                    // sleep(R.integer.SplashActivityTime);
                    sleep(5000);
                } catch (InterruptedException iEx) {
                    iEx.printStackTrace();
                } finally {
                    Intent mainActivity = new Intent(
                           "com.myApp.myApp.MainActivity");

                    startActivity(mainActivity);
                }
            }
        };
        timer.start();
    }
}

そして、Manifest私は持っています:

<activity
    android:name="com.myApp.myApp.SplashActivity"
    android:label="@string/app_name" >

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

    <intent-filter>
        <action android:name="com.myApp.myApp.MainActivity" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>
4

6 に答える 6

0

以下のようにHandlerを使用してください。

ハンドラー handler = new Handler();

// run a thread after 2 seconds to start the home screen

        handler.postDelayed(new Runnable() {
            @Override
            public void run() {
                finish();
                if (!mIsBackButtonPressed) {
                    // start next activity
                    Intent intent = new Intent(SplashScreen.this, SEOshopMainActivity.class);
                    startActivity(intent);
               } 
            }
        }, 2000); // time in milliseconds (1 second = 1000 milliseconds) until the run() method will be called
于 2013-10-17T11:01:10.557 に答える
0

次のコードを使用します

Thread logoTimer = new Thread()
    {
        @Override
        public void run()
        {
            try
            {
                sleep(3000);
                startActivity(new Intent(SplashActivity.this, MainActivity.class));
            }//End of try block
            catch (InterruptedException e)
            {
                e.printStackTrace();
            }//End of catch block
            finally
            {
                finish();
            }//End of finally block
        }//End of run method
    };//End of anonymous thread inner class
    logoTimer.start();

Manifest

<activity
    android:name="com.myApp.myApp.SplashActivity"
    android:label="@string/app_name" >

    <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
</activity>
<activity
        android:name="com.myApp.myApp.MainActivity"
        android:label="@string/app_name" >
    </activity>
于 2013-10-17T10:56:33.517 に答える
0

多分これを試してください:

パブリック クラス スプラッシュスクリーンはアクティビティを拡張します {

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.splash); // Your Splash Layout

        Handler handler = new Handler();

     // run a thread
        handler.postDelayed(new Runnable() {

            public void run() {

                // make sure we close the splash screen so the user won't come back when it presses back key

                finish();
                // start the home screen

                Intent intent = new Intent(splashscreen.this, TabDemo2Activity.class);
                splashscreen.this.startActivity(intent);

            }

        }, 5000); // time in milliseconds (1 second = 1000 milliseconds) until the run() method will be called

}
}
于 2013-10-17T10:58:21.833 に答える
0

意図を変更する:

Intent mainActivity = new Intent(this, MainActivity.class);

さらに、そのsleep メソッドの所有者はどのクラスですか?

于 2013-10-17T10:50:28.193 に答える
0

マニフェスト ファイル内のメイン アクティビティのアクティビティのインテント フィルターを削除します

スプラッシュスクリーンを実装する最良の方法は、ここをクリックしてください

開始インテント行は次のように変更されます

Intent mainActivity = new Intent(SplashActivity .this, MainActivity.class);
于 2013-10-17T10:51:25.073 に答える
0

このコードを使用

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Thread timer = new Thread() {
        public void run() {
            try {
                // sleep(R.integer.SplashActivityTime);
                sleep(5000);
            } catch (InterruptedException iEx) {
                iEx.printStackTrace();
            } finally {
                Intent mainActivity = new Intent(MainActivity.this,
                        SecondActivity.class);

                startActivity(mainActivity);
                finish();
            }
        }
    };
    timer.start();
}

そしてマニフェストで

 <application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.sample.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

     <activity
        android:name="com.example.sample.SecondActivity"
        android:label="@string/app_name" >

    </activity>
</application>
于 2013-10-17T11:19:35.907 に答える