こんにちは、私は 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();
}
}