Android:
public class LocationService extends Service { @Override public void onStart(Intent intent, int startId) { super.onStart(intent, startI
From inside the Service class:
Intent dialogIntent = new Intent(this, MyActivity.class); dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(dialogIntent);