当我使用警告对话框时,我可以使用以下方法添加“取消”按钮
AlertDialog.Builder builder = new Builder(getActivity());
builder.setTitle("Students").setNegativeButton("Cancel",new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int id) {
// if this button is clicked, just close
// the dialog box and do nothing
dialog.cancel();
}
});;
现在我正在实现自己的片段。如何设置相同的取消按钮?
答案 0 :(得分:0)
您只需覆盖DialogFragment
的{{1}}方法:
onCreateDialog()
希望这有帮助。