I am trying to send data from child activity to parent. But somehow, onActivityResult(..) is not getting called. here is code
Parent activity
selecte
And intent that used to launch new Avtivity can not be set with flag Intent.FLAG_ACTIVITY_NEW_TASK
, because as per android developer documentation :
This flag can not be used when the caller is requesting a result from the activity being launched.
Changing my manifest for the calling activity from android:launchMode="singleInstance"
to android:launchMode="singleTop"
fixed the issue for me.
Remove OnActivityResult()
method in the Main Class, it works perfectly...
MainActivity->>>>Fragments