废话就不多说了,开始。。。
https://img-blog.csdn.net/20130502143534569
//删除部全
else
if(id==R.id.btnDelet){
new
AlertDialog.Builder(this).setTitle("删除提示框").setMessage("确认删除该据数?")
每日一道理
航行者把树比作指引方向的路灯,劳动者把树比作遮风挡雨的雨伞,诗人把树比作笔下的精灵,而我却要把树比作教师,它就是为我们遮风挡雨的伞,指明方向的路灯,打开知识殿堂的金钥匙。
.setPositiveButton("肯定",
new DialogInterface.OnClickListener() {
public
void onClick(DialogInterface dialog, int which) {
dao.deletALL("customers");
shujuList();
}})
.setNegativeButton("取消",null)
.show();
}
加载中,请稍候......