Skip to content

Instantly share code, notes, and snippets.

@mcelotti
Last active October 10, 2022 06:48
Show Gist options
  • Star 18 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save mcelotti/cc1fc8b8bc1224c2f145 to your computer and use it in GitHub Desktop.
Save mcelotti/cc1fc8b8bc1224c2f145 to your computer and use it in GitHub Desktop.
Android FLAG_ACTIVITY_FORWARD_RESULT howto
Nav flow is: A => B => C => A with results from C
If you're using fragments please note that "onActivityResult" will be called according to where "startActivityForResult" is called (method "startActivityForResult" is available in both, activity and fragment)
ActivityA
startActivityForResult(intentB, 22);
ActivityB
intentC.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT);
startActivity(intentC);
finish();
ActivityC
setResult(99);
finish();
@nvquangth
Copy link

Awesome!

@YuriPopiv
Copy link

Amazing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment