スプラッシュ画面にエラーが発生し、強制終了する予定です。 LogcatにPermission Deniedと表示されます。この問題を解決するにはどうすればよいですか。誰もがそれが容易になり、あなたにこれを行うどうもありがとうメインアクティビティに行くとスプラッシュ画面にエラーが発生する
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.MotionEvent;
public class SplashScreen extends Activity {
protected boolean _active = true;
protected int _splashTime = 4000;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
// thread for displaying the SplashScreen
Thread splashTread = new Thread() {
@Override
public void run() {
try {
int waited = 0;
while(_active && (waited < _splashTime)) {
sleep(100);
if(_active) {
waited += 100;
}
}
} catch(InterruptedException e) {
// do nothing
} finally {
finish();
startActivity(new Intent("com.droidnova.android.splashscreen.BodyPartsGameActivity"));
stop();
}
}
};
splashTread.start();
}
@Override
public boolean onTouchEvent(MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
_active = false;
}
return true;
}
}
あなたが定義されていますmenifestの "com.droidnova.android.splashscreen.BodyPartsGameActivity"アクション? –
logcatを投稿してください – MikeIsrael