Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 175 down vote accepted

From your FirstActivity call the SecondActivity using startActivityForResult() method

eg:

Intent i = new Intent(this, SecondActivity.class);
startActivityForResult(i, 1);

In your SecondActivity set the data which you want to return back to FirstActivity, If you don't want to return back don't set any.

eg: In secondActivity if you want to send back data:

 Intent returnIntent = new Intent();
 returnIntent.putExtra("result",result);
 setResult(RESULT_OK,returnIntent);     
 finish();

if you don't want to return data:

Intent returnIntent = new Intent();
setResult(RESULT_CANCELED, returnIntent);        
finish();

Now in your FirstActivity class write following code for onActivityResult() method

protected void onActivityResult(int requestCode, int resultCode, Intent data) {

  if (requestCode == 1) {

     if(resultCode == RESULT_OK){      
         String result=data.getStringExtra("result");          
     }
     if (resultCode == RESULT_CANCELED) {    
         //Write your code if there's no result
     }
  }
}//onActivityResult
share|improve this answer
3  
fantastic explanation, Thank you dear Nishant. – Hesam May 2 '12 at 3:42
you are most welcome..Good Luck! – Nishant May 2 '12 at 3:45

How to check result from main activity?

You need to override Activity.onActivityResult() then check it's parameters:

  • requestCode identifies which app returned these results. This is defined by you when you call startActivityForResult().
  • resultCode informs you whether this app succeeded, failed, or something different
  • data holds any information returned by this app. This may be null.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.