Android - Service and Activity interaction
- by Chris
I want to create an app that contains a Service S and an Activity A. The Service S is responsible for preprocessing, such as preparing the data shown on the UI of the Activity A, before the Activity A gets invoked.
I want to be able to invoke the Service S from outside the package, say from another Android app's Activity class B, do the…