I'm trying to show two DialogFragment at the same time. One of them is a full-screen dialog, the second should be visible after the user dismisses the full-screen one.
This is what I'm trying to achieve (DialogFragment #1 -> DialogFragment #2 -> Fragment):
The problem is:
DialogFragment #1is initiated at the same time thanFragment.Fragmentperforms a network call that will show theDialogFragment #2once finishes.DialogFragment #2appears over theDialogFragment #1while it should be shown under it.
So it looks like this:
Would it be possible to change the elevation of a DialogFragment or any way to force one to appear over the other?

