I have two different activities. The first launches the second one. In the second activity, I call System.exit(0) in order to force the application to close, but the first activity is automatically displayed instead of the application returning to the home screen. How can I avoid this, and get the application to return to the home screen?
|
|
||||
|
|
|
You should really think about not exiting the application. This is not how Android apps usually work. |
|||||||||||||||||||||
|
|
Short answer: call The longer answer starts with another question: why do you want to kill your application? The Android OS handles memory management and processes and so on so my advice is just let Android worry about this for you. If the user wants to leave your application they can press the Home button and your application will effectively disappear. If the phone needs more memory later the OS will terminate your application then. As long as you're responding to lifecycle events appropriately, neither you nor the user needs to care if your application is still running or not. So if you want to hide your application call |
|||||||||||||||||
|
|
The easiest way for achieving this is given below (without affecting Android's native memory management. There is no process killing involved).
Steps Explained:
|
|||||||||
|
|
Android has a mechanism in place to close an application safely per its documentation. In the last Activity that is exited (usually the main Activity that first came up when the application started) just place a couple of lines in the onDestroy() method. The call to System.runFinalizersOnExit(true) ensures that all objects will be finalized and garbage collected when the the application exits. For example:
Finally Android will not notify an application of the HOME key event, so you cannot close the application when the HOME key is pressed. Android reserves the HOME key event to itself so that a developer cannot prevent users from leaving their application. |
|||||
|
|
You can also specify noHistory = "true" in the tag for first activity or finish the first activity as soon as you start the second one(as David said). AFAIK, "force close" kills the process which hosts the JVM in which your application runs and System.exit() terminates the JVM running your application instance. Both are form of abrupt terminations and not advisable for normal application flow. Just as catching exceptions to cover logic flows that a program might undertake, is not advisable. |
|||||||||
|
|
I use this method to close the Activities!
|
||||
|
|
|
When you launch the second activity,
|
|||||||||
|
|
|
||||
|
|
|
You can not do System.exit(), it's not safe. You can do this one: Process.killProcess(Process.myPid()); |
|||
|
I use this: 1) The parent activity call the secondary activity with the method "startActivityForResult" 2) In the secondary activity when is closing:
3) And in the parent activity override the method "onActivityResult":
This works fine for me. |
|||
|
|
|
Keep in mind that when working with applications that use persistent socket connections, the |
||||
|
|
|
Start the second activity with startActivityForResult and in the second activity return a value, that once in the onActivityResult method of the first activity closes the main application. I think this is the correct way Android does it. |
||||
|
|
|
Try the following. It works for me.
|
||||
|
|
|
You are wrong. There is one way to kill an application. In a class with super class Application, we use some field, for example,
Every activity which is getting to the screen have to call
|
||||
|
|
It's actually quiet easy. The way I do this is by saving a flag in a static variable available to all. Then, when I exit, I set this flag and all my activities check this flag That way all activities will check for the flag and will close gracefully if the flag is set. |
||||
|
|
|
Run the second activity using start activity for result:
Add this function to the first Activity:
And add this to the second Activity:
|
||||
|
|
|
It is not recommended, but you can still use this. Better go with this solution in case you need to quit the app. According to me, the best solution is to finish every activity in your app like below. Step 1. Maintain a static variable in mainactivity. Say,
Step 2. On click event of an button, set this variable to true.
Step 3. And in every activity of your application, have the
|
||||
|
|
