What about this: int pid = android.os.Process.myPid(); android.os.Process.killProcess(pid);
You exit the app asking android to kill your process. I think that what is used in 3D games as most of them have and exit button, you kill the process so that it wont drain battery and use memory. Anyway if your app consist of only 1 activity you should call finish(); -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

