我希望我的應用程序在啓動時檢查用戶名和密碼是否保存在sharedPreferences中。如果它檢測到這些憑證,將顯示一個登錄頁面,如果沒有,則會顯示一個註冊頁面。在用戶登錄到應用程序後,我希望整個應用程序關閉設備的後退按鈕或推送應用程序退出按鈕。如何關閉或退出Android活動
除了應用程序正常關閉以外,我還有一切工作。我以爲自己編碼正確,但沒有。如何在選擇退出和設備後退按鈕時關閉整個應用程序。
退出方法:
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
finish();
}
});
builder.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface arg0, int arg1) {
arg0.cancel();
}
});
AlertDialog alert=builder.create();
alert.show();
http://stackoverflow.com/questions/4617049/how-to-exit-from-an-android-app –
有些情況下你曾經想在一個Android應用程序的退出按鈕很少的情況下:http://blog.radioactiveyak.com/2010/05/when-to-include-exit-button-in-android.html – adamp