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
by calling finish(); in OnClick button or on menu
case R.id.menu_settings: finish(); return true;
case R.id.menu_settings:
finish(); return true;