I had an app that i want it exit a specific activity for example:
A -> B -> C
but everytime i press the back button from activity C it always bring me back to B and from B to A before exiting. Is there anyway that I can exit directly from C no need to go through B and A again?
I had an app that i want it exit a specific activity for example:
Share
If you know A and B are complete, call
finish()within each of them after they’ve started the next activity.