次の方法を使用して、ユーザーに警告ボックスを表示してアプリケーションを終了しました。
しかし、私のアプリケーションは2回退出を求めています。
コード:
@Override
public void onBackPressed()
{
new AlertDialog.Builder(this)
.setTitle("Closing Activity")
.setMessage("Are you sure you want to close this activity?")
.setPositiveButton("Yes", new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int which) {
finish();
}
})
.setNegativeButton("No", null)
.show();
}