欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

android 彈出提示框的使用(圖文實例)

 更新時間:2013年06月04日 10:58:00   作者:  
android 彈出提示框的使用(圖文實例),需要的朋友可以參考一下

復制代碼 代碼如下:

//刪除全部

else if(id==R.id.btnDelet){

new AlertDialog.Builder(this).setTitle("刪除提示框").setMessage("確認刪除該數(shù)據(jù)?")
.setPositiveButton("確定", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dao.deletALL("customers");
shujuList();
}})
.setNegativeButton("取消",null)
.show();

}

相關文章

最新評論