android使用弹出提示框的教程
来源:爱站网时间:2020-03-28编辑:网友分享
弹出提示框在电脑系统中是经常可以看得到,但是在做Android中很多开发者们都不知道如何使用弹出提示框,那么接下来的内容中我们一起去看看android使用弹出提示框的教程。
弹出提示框在电脑系统中是经常可以看得到,但是在做Android中很多开发者们都不知道如何使用弹出提示框,那么接下来的内容中我们一起去看看android使用弹出提示框的教程。
//删除全部
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();
}
以上就是小编介绍android使用弹出提示框的教程,在学习Android之后相信大家都会在实践中不断地成长并学会总结,感受每天的进步!