I have 3 activities. Activity A
is parent Activity, Activity B
is started as Child Activity of Activity A
. Now when I called StartActivityForResult
from Activity B
for Activity C
, Only Activity A's onActivityresult
is called. I want to get Results in Activity B's OnActivityResult
.
Intent it = new Intent(B.this, C.class);
getParent().startActivityForResult(it, REQUEST_CODE);
If i call like this.
startActivityForResult(it, REQUEST_CODE);
Both onActivityResult
didn't called.
Any help will be Appreciated.