In my app i need to open the bank\'s page, to make the user able to pay. Reading the Android documentation I see that I should use an ACTION_VIEW (and not a Web
ACTION_VIEW
Just put a ResultCode argument on your startActivityForResult method, something like =this.startActivityForResult(intent, PAYMENT_ACCEPTED)
=this.startActivityForResult(intent, PAYMENT_ACCEPTED)
It will be returned as resultCode when you finish your second activity.