I have several intent using startActivityforResult() to launch. I want to receive several feedbacks. How can I write onActivityResult() for each startActivityforResult()?
I have several intent using startActivityforResult() to launch. I want to receive several feedbacks.
Share
You can pass in the requestCode as second argument to startActivityForResult. This integer value will be return to you in onActivityResult as requestCode.
Say you calling with different request codes.
Then your onActivityResult looks like:
In Activity 2 which is launched by you use following apis to return the data:
Read below docs for more details:
Starting Activities and getting results back
onActivityResult