Skip to content

Instantly share code, notes, and snippets.

@homerunsb
homerunsb / CustomDialogFragment.java
Last active October 29, 2020 05:54
Android - Custom Dialog
public class CustomDialogFragment extends DialogFragment implements View.OnClickListener{
private static final String TAG = "CustomDialogFragment";
private static final String ARG_DIALOG_MAIN_MSG = "dialog_main_msg";
private String mMainMsg;
public static CustomDialogFragment newInstance(String mainMsg) {
Bundle bundle = new Bundle();
bundle.putString(ARG_DIALOG_MAIN_MSG, mainMsg);