I want to close my application, so that it no longer runs in the background.
How to do that? Is this good practice on Android platform?
If I rely on the \"ba
The best and shortest way to use the table System.exit.
System.exit(0);
The VM stops further execution and program will exit.