I have put some cache cleaning code in onDestroy of my activity but most of the time the code is not executed unless I explicitly finish the activity via
onDestroy
try to use onstop
like this
@Override protected void onStop() { super.onStop(); //write your code here }