I am building an Android App. How to exit an Android App when back is pressed. Android version is 2.3.3 and above. The Android App goes to previous activity which i don\'t want.
Just use the code finish(); under your intent to close the activity. So, It will not appear again. This solved mine.
finish();
startActivity(new Intent(SplashActivity.this, MainActivity.class)); finish();