When we press this button
We see the apps which we didn\'t close, like this
But when we want to close an app from this screen (below image), the method onD
Your problem is that onDestroy is only called in aService. In an Activity the called method is onPause() Put simply in your Activity the field:
Service
Activity
onPause()
@Override public void onPause() { //Put your Code here }