franmontiel / franmontiel/FullScreenDialog
Open new FullScreenDialogFragment from current opened FullScreenDialogFragment
- Dominant language
- Java
- Stars
- 111
- Forks
- 28
- PR merge metrics
- No merged PRs in 30d
Description
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
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.