开发者

How to take action everytime user starts/stops app regardless of the activity they're on

I'm in the process of porting an app originally developed on iOS to Android. I'm trying to accomplish the following:

  • every time the app is started, call the start() method on a Manager class
  • every time the user leaves the app, call the stop() method on the same Manager class
  • every time the user comes back to the app (resuming from idle), call the start() method on the Manager class

The so-called Manager class handshakes with a server on the Internet and needs to do a variety of book-keeping activities every time the user the user enters and leaves the app.

Whereas iOS enables you to subclass the UIAppDelegate class and have code that runs when the app starts, ends, or resumes from idle, it seems Android doesn't have an equivalent approach. Instead, these are the options with Android:

1) Activity class: methods for every time an Activity (view) is created, stopped, or resumed

2) Application class: onStart and onDestroy for every time the app is started or killed

3) Service mechanism to create a background task that can be used to perform long-living operations in the background while the app is active or even while its not active

None of the above align real well with what I'm used to in iOS. Option 1 would require every Activity in the a开发者_StackOverflow社区pp's view hierarchy to have code that runs when the app starts/stops/resumes. Of the 3, I sense option 3 is more relevant. I'm just not entirely clear how I could start/stop a service in Android as the user starts/stops/resumes an app without regard to the specific activity they're on at the time.

I would appreciate input from Android developers or developers that work on both iOS and Android.


The so-called Manager class handshakes with a server on the Internet and needs to do a variety of book-keeping activities every time the user the user enters and leaves the app.

This might be a valid design pattern on iOS -- I have no idea. It is not a valid design pattern on Android. You don't "leave the app" on Android any more than you "leave the app" in a Web app. "Leave" is determined mostly as "you didn't come back in a while" in both Android and Web apps.

2) Application class: onStart and onDestroy for every time the app is started or killed

Note that the method is onTerminate(), not onDestroy(), and it actually never gets called. The Application object is created when the process is and lives until the process is terminated outright.

Its just not entirely clear how I could start/stop a service in Android as the user starts/stops/resumes an app without regard to the specific activity they're on at the time.

You might elect to use a service for doing the "handshaking" -- in fact, that's probably likely.

However, there is nothing built in for "leave the app". I would strongly encourage you to simply get rid of the concept entirely.

If not, you're welcome to rig up a service that is notified on each onPause() and onResume(), does the bookkeeping to see if there are any live activities, and if there hasn't been for X period of time, does your "leave the app" logic, then shuts down. You'd also trigger the "leave the app" logic in onDestroy(), if the service is shutting down at OS request vs. your own shutdown request. This is not 100% guaranteed to work -- users can force-stop your service and the OS can kill the process with impunity.


If you want to avoid duplicating code in all your Activities, why not have 1 subclass of Activity with the common code, and have the other Activities subclass that?

You can track activity lifetimes using a variety of mechanisms, including setting/clearing SharedPreferences in onPause/onResume, or use a singleton with reference counting.

Hope this helps,

Phil Lello

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜