So far, I used the startActivity function with success and now that I need to use the startActivityResult, I have a problem.
When using this function, the activity
FriendPicker activity
Intent intent = new Intent(FriendPicker.this, MoodPicker.class);
startActivityForResult(intent, 2);
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent intent)
{
super.onActivityResult(requestCode, resultCode, intent);
Log.i("in OnActivityResult", "Activity Result");
switch (requestCode)
{
case 2:
if (resultCode == Activity.RESULT_OK) { //optional
Log.i("in OnActivityResult", "Activity Resut 2");
}
break;
}
}
MoodPicker class
Intent intent = new Intent(MoodPicker.this, FriendPicker.class);
setResult(Activity.RESULT_OK, intent);
finish();
I had the same problem using onActivityResult(); cause i didn´t understand how this will be correctly applied, here you can find a good explanation how to use onActivityResult onActivityResult doesn't work?