Return result from fragment to fragment
//run dialog fragment in fragment Fragment fragmentByTag = getFragmentManager().findFragmentByTag(DownloadDialogFragment.TAG); if (fragmentByTag == null) { CustomDialog customDialog = new CustomDialog(); customDialog.setTargetFragment(currentFragment, REQUEST_DOWNLOAD_FRAGMENT); customDialog.show(getFragmentManager(), CustomDialog.TAG); } //in dialog, init result to onActivityResult…