I Found some codes for quit an Android application programatically. By calling any one of the following code in onDestroy() will it quit application entirely?
getActivity().finish(); System.exit(0);
this is the best way to exit your app.!!!
The best solution for me.