簡単なアラートビューのOKボタンを設定して、戻るボタンが機能するようにしたいと思います。どのような方法を使うべきですか?戻るボタンとして機能するボタンを設定する
AlertDialog.Builder alt_bld = new AlertDialog.Builder(this.getContext());
AlertDialog alert = alt_bld.create();
alert.setTitle("Your score is: " + score);
alert.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
//here would be the "back button's method"
}});
alert.show();
アクティビティを終了しますか?あるいは、デイログを却下したいですか?明確にしてください – Arslan
私は現在の活動を終了し、ダイアログを閉じ、以前の活動に戻ることを望みます。 – MMMM