-1

こんにちは、私は Android の初心者です。助けてください。以下のコードでスプラッシュ スクリーンの時間を設定しようとしていますが、アプリケーションがインストールされず、NULL が返されます。Android 4.1.2 を使用しています

public class SplashActivity extends Activity {

    //how long until we go to the next activity
    protected boolean _active = true;
    protected int _splashTime = 5000;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_splash);         

        // thread for displaying the SplashScreen
        Thread splashTread = new Thread() {
                @SuppressWarnings("deprecation")
                @Override
                public void run() {
                    try {
                        int waited = 0;
                        while(_active && (waited < _splashTime)) {
                            sleep(100);
                            if(_active) {
                                waited += 100;
                            }
                        }
                    } catch(InterruptedException e) {
                        // do nothing
                    } finally {

                        stop();
                    }
                }
            };
            splashTread.start();
        }
    }
4

1 に答える 1

0

アクティビティが表示される前でも、スプラッシュ画面を表示しようとしています。注:アクティビティは、onCreate()が終了した後にのみ表示されます。

于 2012-11-06T19:15:09.483 に答える