一般对于对话框中的“确定”和“取消”按钮使用代码如下:
builder.setPositiveButton("创建", newDialogInterface.OnClickListener() {
@Override
publicvoid onClick(DialogInterface dialog, int which) {
//TODO Auto-generated method stub
}
});
//为对话框设置一个”取消“按钮
builder.setNegativeButton("取消",new DialogInterface.OnClick Listener(){
@Override
publicvoid onClick(DialogInterface dialog, int which) {
//TODO Auto-generated method stub
}
});
因为setPositiveButton是实现android.content.DialogInterface.OnClickListener接口后的方法
普通的onclick()是view下的,完全是两个不同的实现
又在View类中也有OnClickListener()方法,而我们要使用的是DialogInterface的,所以要加上DialogInterface.OnClickListener()这样子。