Normally when showing a DialogFragment from an Activity, you do this:
MyDialogFragment myDialogFragment = MyDialogFragment.newInstance(args);
myDialogFragment.show(getSupportFragmentManager(), MY_TAG);
Or if you are in a Fragment, you can do this:
MyDialogFragment myDialogFragment = MyDialogFragment.newInstance(args);
myDialogFragment.show(getActivity().getSupportFragmentManager(), MY_TAG);
Which as far as I can tell is pretty similar to the first since it's finding the Activity and then calling from it.
However, again, assuming we're in a Fragment, would it ever make sense to launch a DialogFragment by doing this instead:
MyDialogFragment myDialogFragment = MyDialogFragment.newInstance(args);
myDialogFragment.show(getChildFragmentManager(), MY_TAG);
Would the calling Fragment be considered the parent of the DialogFragment?