我想設置一個簡單的Alert View的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();
是否要完成活動?或者你想解僱Dailog?請清除 – Arslan 2012-02-01 13:03:58
我想完成當前的活動並關閉對話框,並返回上一個活動。 – MMMM 2012-02-01 13:10:28