How am i able to Stop GPS from receiving new signals?
Just use:
if you initialize a LocationManager
Object
mLocationManager_ = (LocationManager) mContext_.getSystemService(Context.LOCATION_SERVICE);
add a location listener, GPS is starting to a GPS-Lock,
mLocationListener_ = new MyLocationListener(mContext_);
mLocationManager_.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, mLocationListener_);
If this lock exists, you see the GPS Signal in your status bar, now, if you press Home, you see, the GPS is still online, because your App is still having and trying to continue your GPS lock,
so use
Main.mLocationManager_.removeUpdates(this);
to stop your App from receiving new location updates.