Try removing updates to your location manager in the onDestroy method of your activity. tp delete gps icon.
Just like that ..
@Override
public void onDestroy() {
super.onDestroy();
locationManager.removeUpdates(this);
}
where locationManager is of type LocationManager.
source
share