Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get onPause & onResume like events at application/task level

I was wondering what could be the reason for not having a callback at the application level when an application goes to background and comes to the foreground. Activity class's onPause and onResume are only called on the current top activity. If I want to stop some background task that has the application level scope, then there is no easy way I can stop it when the app goes to background. There is high demand for these event callbacks.

Why doesn't Android have a app level callback on pause and resume of applications? Can it be implemented in Android at the task(activity stack) level if not at app level?

The real problem :

A background Timertask refreshes UI with data from web at regular intervals. When app is no longer in foreground I want to stop it.

Currently I am putting the repeating code in a BaseActivity. This is at the activity level. The task stops and starts on each pause and resume of every activity and the event of app going to bg or coming to fg is hidden among one of these events, which I cannot know. I wanted to know if there is a better way of doing it, I mean knowing when the app has stopped being visible to the user.

like image 495
Ronnie Avatar asked Sep 07 '11 18:09

Ronnie


2 Answers

Use Handler instead of TimerTask. A timed message for a Handler bound to an Activity's Looper will not be triggered if the activity is not active.

The pattern would be to send a timed message to the Handler which would in turn spawn a Thread/AsyncTask which would execute the request in the background and update the UI. A bit more overhead in thread creation/destruction but this is I/O bound anyway. You could make a thread pool if that overhead becomes a bototleneck (though I doubt it would).

If you really want to know when your application is no longer in the foreground, you can use the overlap in onStop/onResume between two activities. When going from A->B, B's onResume will be called before A's onStop. Therefore, you can increment a global counter in onResume and decrement it in onStop. That counter will become 0 if and only if no activities are visible. I used this successfully to track precise visits for analytics purposes. It does require a common base class for all your activities, though.

like image 69
Delyan Avatar answered Oct 05 '22 09:10

Delyan


Are you talking about android.app.Application class? There's single Application created when your app starts, before starting some Activity or Service, and it lives as long as your app remains in memory.

You may extend this Application and put there some global data. Specify in manifest in <application android:name=".YourApp"> the name of your extended class.

Now you should understand, that Application as such doesn't go to foreground or background, only Activity can. However, from your Activity, you can call getApplication to get your single Application instance (use casting), and call your own methods related to focus change, thus knowing if your app as a whole is in foreground or background, and behave as needed.

And Service has also getApplication() method, which receives same Application object.

Most developers probably don't realise that they can have single Application object keeping needed app data, not only bunch of Activities and Services.

like image 25
Pointer Null Avatar answered Oct 05 '22 10:10

Pointer Null