Skip to content Skip to sidebar Skip to footer

How To Handle IPC Between A Service And An Activity (and Its Subactivity)?

Communication between two different processes (a service and an activity) in Android can be managed via Messenger or AIDL: it is sufficient that an activity binds to a service. How

Solution 1:

You want to have a single entity that is responsible for binding to the service and holding on to the connection and you need that entity NOT to be an Activity instance. Try this:

  • Create a base class (BaseActivity) that subclasses Activity
  • Derive all your activities from BaseActivity
  • Manage the connection between your application and your service using methods in BaseActivity. BaseActivity will need to have static (class) variables that keep track of the connection to the service and deal with binding to the service and shutting it down when you are done with it.
  • Make sure to use the application context (not the activity context) when binding to the service so that the OS won't kill the connection to the service when the activity is destroyed.

In this way you don't have to worry about creating and tearing down connections between the different activities and your service. There is only ever one connection between your entire application (all the activities) and your service.

I realize that I haven't explained all the gory details, but hopefully you get the basic idea.


Solution 2:

Have you ever think about the following solution? Instead of bind Activity to Service, you can start your activity with the command startService() and then communicate with Intents and Receivers. In this way you can launch other activity, calling service for its state and interact with it wherever you want :)


Post a Comment for "How To Handle IPC Between A Service And An Activity (and Its Subactivity)?"