I need help with Android. Here is problem I need to catch event when application went to background. (ex. home is pressed or any other action that push my app in backgound) Currently I m able to catch onPause for activity
@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
}
Is there any override for some event on application level ?