hi,
I'm new to Android. I've got 3 Activities (3 .java and 3 .xml files).
I'm using Intents to switch to the next view.
Intent i = new Intent();
i.setClass(BetsActivity.this, LoginActivity.class);
startActivity(i);
I've got a context menu with the option to close the application.
But calling finish() just closes my view and switches to the last view (like a back button).
How can I close all my Activities at once?
Greetings,
Marco


