@Override protected void onDestroy() { gps.unsuscribe(); stopLocationPolling(); Log.d("ROADTEST", "unsubscribed from GPSService"); super.onStop(); }
@Override protected void onStart() { gps.subscribe(); Log.d("ROADTEST", "subscribed to GPSService"); Toast.makeText(getApplicationContext(), "LOL", Toast.LENGTH_LONG).show(); super.onStart(); runLocationPollingLoop(); runServerPushLoop(this); }