This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |