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
Well, if not only activity, but also the application you want to terminate, you can use
System.exit(0)
People say that it's deprecated or bad example, but, well it's pure Java and does work...