将我自己的Fragment实现为DialogFragment

时间:2013-01-17 15:56:32

标签: android android-fragments

当我使用警告对话框时,我可以使用以下方法添加“取消”按钮

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();
  }
});;

现在我正在实现自己的片段。如何设置相同的取消按钮?

1 个答案:

答案 0 :(得分:0)

您只需覆盖DialogFragment的{​​{1}}方法:

onCreateDialog()

希望这有帮助。