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
android.os.Process.killProcess(android.os.Process.myPid());
public void onDestroy() { super.onDestroy(); android.os.Process.killProcess(android.os.Process.myPid()); }