私は現在の活動を開始する際にこのコードを書いていますが、現在のアクティビティを起動するとがクラッシュします。Android暗黙のインテント
SharedPreferences signShared = getSharedPreferences("ZapLukShared",MODE_PRIVATE);
sharedUserId = signShared.getInt("logUser_Id",0);
sharedOtpVerified = signShared.getBoolean("OtpVerified", false);
if(sharedOtpVerified==false) {
Intent i=new Intent(MainActivty.this,MainActivity.class);
startActivity(i);
}
else {
Intent i2=new Intent(MainActivity.this,MainPageActivity.class);
startActivity(i2);
}
あなたのクラッシュログ –
ActivityManager追加:開始:意図は{= android.intent.action.MAIN働きますcat = [android.intent.category.LAUNCHER] cmp = com.example.zapapp/.MainActivity} – vishwa
問題のあなたのandroid-menifestファイルを追加してください。 –