I know that finish() returns your activity back to your previous activity. Now I am curious if we are able to accomplish the opposite meaning forwarding back to the next activity that you backed off without doing an Intent. This is just a curiosity question.
Is this possible?
No. The “next activity that you backed off without doing an Intent” was destroyed by a call to
finish()when the user pressed BACK, so you cannot return to it.