I'd like to get data when startActivityForResult from non Activity, please for me some sugession.
For example:
Fragment A--> non Activity class, startActivityForResult here, and how to get data on FragmentA
FragmentA
DownloadFile files = DownLoadFile.loadFiles(getActivity)
class DownloadFile
{
public static void loadFiles()
{
Intent = new Intent(...)
startActivityForResult
}
}