I have preperd a remote service, i would like to know if it’s possible somehow via this service to call another activities?
coz usually what ive seen so far, is how external apps calling the remote service and using it’s methods, but i want vice versa.. that the remote service will call an external app’s activity,
thanks,
moshik.
You can have an activity register a callback or listener object with the remote service, that the service can then use to call back into the activity. See here and here for sample projects.