2009年12月31日星期四

AlertDialog.Builder, 可能是創建對話框最簡單的方法.

AlertDialog.Builder是一個公共靜態類(public static class), 即是可以直接調用創建一個警告對話框(AlertDialog). 它可能是創建對話框最簡單的方法.

AlertDialog


new AlertDialog.Builder(this)
.setTitle("Title").setMessage("Message")
.setPositiveButton("OK",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
}).show();




沒有留言:

發佈留言