Android:
public class LocationService extends Service { @Override public void onStart(Intent intent, int startId) { super.onStart(intent, startI
If you need to recal an Activity that is in bacgrounde, from your service, I suggest the following link. Intent.FLAG_ACTIVITY_NEW_TASK is not the solution.
https://stackoverflow.com/a/8759867/1127429