In my activity, i'm calling second activity from main activity by start Activity For Result. In my second activity there are some methods that finish this activity (maybe without result), however, just one of them return result.
For example, from main activity I call second one, in this activity I'm checking some features of handset such as does it have camera, if it doesn't have then I'll close this activity. Also, during preparation of MediaRecorder or MediaPlayer if problem happens then I'll close this activity. If it device has camera and recording is done completely, then after recording video if user clicks on done button then I'll send result (address of recorded video) back to main activity.
How to check result from main activity?
