i want to if the user press home button my service will be stop , this is my code but it\'s not working for me, please help me:
@Override
public boolean onKe
Make a root activity and add this,
@Override
public void onTrimMemory(int level) {
super.onTrimMemory(level);
if (level == ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
// Get called every-time when application went to background.
System.exit(0);
}
}
extend each activity with rootActivity, it will shutdown service on home/menu button press