Background: I dump some data in the Application class, and save it to files after a short interval or when the app goes to background (say, when the user presses the Home button or the Task-switcher button). I don't want to use onPause() of Activity class because there are many activities in the app, I have to check onPause() for all of them. And onPause is also called when I jump from one activity to another in my app (which creates unnecessary saving action).
Question: Is there a universal event fired when the app going to background, regardless of which activity it is at?
Thanks
Check the below code continuously means u can use Timer class.