Cannot Get To Trigger Onactivityresult() Android?
I have a DataActivity which has to ask the user to fill out a form and then return the data to MainActivity DataActivity is called from MainActivity like this : Intent i = new Inte
Solution 1:
Read the documentation for the parameter requestCode on startActivityForResult
requestCode If >= 0, this code will be returned in onActivityResult() when the activity exits.
RESULT_OK is equal to -1..
Change your request code to some positive value for it to work
Intent i = newIntent(this, DataActivity.class);
startActivityForResult(i,345);
Post a Comment for "Cannot Get To Trigger Onactivityresult() Android?"