I have an Activity A
that calls an Activity B
using startActivityForResult()
. Under certain conditions Activity B
needs to call on Activity C
for another result so I use the startActivityForResult()
method again.
However, when I setResult()
and finish()
in Activity C
, it calls the onActivityResult()
method in Activity A
instead of Activity B
.
Is there a way to get around this ??