So I have my Activity, and on pressing a \"Quit\" button I call Activity.finish(). This effectively closes my application.
The problem: The Dalvik-process of my applicat
By killing the process you can stop the application completely.from the last screen on back button press you can kill the process by :
public void onBackPressed() { super.onBackPressed(); int pid = android.os.Process.myPid(); android.os.Process.killProcess(pid); }