Open new FullScreenDialogFragment from current opened FullScreenDialogFragment
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
I didn't take into account that use case when developing the library, from a UX perspective I see a little bit strange to open a full screen dialog from another full screen dialog. At this moment I don't know if it will fail at some point with this use case but you can try it and post your results here.