当前位置: 编程技术>移动开发
android 弹出提示框的使用(图文实例)
来源: 互联网 发布时间:2014-10-18
本文导语: 代码如下://删除全部 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("custo...
代码如下:
//删除全部
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();
}