Hi all,
I have pushed one Activity to make few changes. Now I want to pass all the changes to the previous(below) Activity. I dont want to create Activity again;and intead i want to access the previous activity.
thanks...
Hi all,
I have pushed one Activity to make few changes. Now I want to pass all the changes to the previous(below) Activity. I dont want to create Activity again;and intead i want to access the previous activity.
thanks...
Use startActivityForResult()
and setResult()
. The former is used to start the newer activity; the latter is used to pass results back to the older activity.