I have open activities like this
Activity-A(Get the User Personal Details) -->
Activity-B(Getting the User Contact Info) -->
Activity-C(Getting the User Credit Card Details) -->
Activity-D(Credit Card Verification)
Now from the Activity-D, I need to move to the Activity-B wihtout loosing user entered data on the Activity-B
I have tried finish()
menthod on Activity-D But It fails.
I have open every activity using the following method. Example from Activtiy-A to Activty-B
Intent intent_B = new Intent(getApplicationContext(), ActivityB.class)
startActivity(intent_B);
How to I resume the Activity-B from Activity-D