「Android入門」戻るキー(Back)ボタンを終了するサンプルコード

Javaコード
public boolean onKeyDown(int keyCode, KeyEvent event) {

// 戻るキー
if (keyCode == KeyEvent.KEYCODE_BACK) {

new AlertDialog.Builder(this)
.setMessage(“終了しますか")
.setNegativeButton(“キャンセル",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int which) {
}
})
.setPositiveButton(“OK",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int whichButton) {
finish();
}
}).show();

return true;
} else {
return super.onKeyDown(keyCode, event);
}
}

@Override
protected void onDestroy() {
super.onDestroy();
//他の方法
//System.exit(0);
//推奨
android.os.Process.killProcess(android.os.Process.myPid());
}

Android

Posted by arkgame