Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Close application and launch home screen on Android

I have developed an application which consist of 23 screens or layout.. Each layout links with another one..

The process will go as a chain or tree.. How can i close my application entirely if i was in the mid of any screen or flow in my application..

If i have single screen means i can use finish() method for closing the application, in this if i use finish() method means it will cross many screens to close my application entirely..

Help me to code for this problem..

share|improve this question

marked as duplicate by oldergod, Simon, Andro Selva, Anders R. Bystrup, Linger Jan 4 at 13:36

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

call moveTaskToBack(true) on your Activity. This will hide your application until the user wants to use it again.

But it is always preferred not to quit the entire application on a single button's click.

share|improve this answer

use this code to move your app to background.

Intent homeIntent = new Intent(Intent.ACTION_MAIN);
        homeIntent.addCategory(Intent.CATEGORY_HOME);
        homeIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        startActivity(homeIntent);

In other words this will launch the home screen and make your app to move to background.

android.os.Process.killProcess(android.os.Process.myPid()); 

This will stop your app, whereas the above one will make your app to live in the background and resume it from where you left the app of the app was not killed by system already.

share|improve this answer

Try out this way:

android.os.Process.killProcess(android.os.Process.myPid());
share|improve this answer
1  
<shudders>..... – Oleg Vaskevich Jan 4 at 8:14

You can use android:noHistory="true" in your AndroidManifest.xml in each activity tag.

<activity android:name=".Something" android:noHistory="True" />

Now when u will call next activity via intent. Intent will not store previous activity. so whenever u will click back it will close your app.

share|improve this answer
I updated the android:noHistry=true" to android:noHistory="true"`. :) – ninetwozero Jan 4 at 8:16
But if i Need both Back and Exit Button Means? What shall i do?.. Back button for previous Activity and Exit for closing my Application??? – Gowri shankar Jan 5 at 5:41

Not the answer you're looking for? Browse other questions tagged or ask your own question.