I have an Activity that calls another Activity, that calls some other Activities. I send to the last Activity to get a result
Activity
Activities
Just replace
startActivityForResult(intent, Defines.FILTER_BY_CATALOGUE);
with
getActivity().startActivityForResult(intent, Defines.FILTER_BY_CATALOGUE);
It will work for sure. :)