I\'m working on establishing a two-way communication between an Activity and a Service which runs in a different process.
Querying the process from the Activity is n
You have to use BroadcastReceiver to receive intents, and when you want to communicate simply make an Intent with appropriate values.
BroadcastReceiver
This way you should be able to make a 2-way communication between any component.