I had opened FullScreenDialogFragment from onclick from Activity ..... Now can i open another new one FullScreenDialogFragment from current opened FullScreenDialogFragment
Example :
final Bundle profile_args = new Bundle();
profile_args.putString(Profile_Frag.UNIQUE_NAME, "profile_key");
dialogFragment = new FullScreenDialogFragment.Builder(getActivity())
.setTitle("ข้อมูลส่วนตัว")
.setConfirmButton("ตกลง")
.setContent(Profile_Frag.class, profile_args)
.build();
dialogFragment.show(getFragmentManager(), dialogTag);
Can i open new FullScreenDialogFragment from Profile_Frag..... or its something like open multiple times.
I wanna open FullScreenDialogFragment from current opened Fragment (FullScreenDialogFragment )
If it can be done .... please let me know thanku