I´m having trouble with the device updating the location. I call StartLocationListeners() onResume and call StopLocationListeners() onPause. I have the feeling that I shouldn´t declare twice the LocationManager LocatieManager, but if I declare it at the beginning of the class I get a nullpointer exception. Can anybody explain me how to approach this:
public void StopLocationListeners(){
LocationManager LocatieManager=(LocationManager)myContext.getSystemService(Context.LOCATION_SERVICE);
LocatieManager.removeUpdates(netwerklistener);
LocatieManager.removeUpdates(gpslistener);
LocatieManager.removeGpsStatusListener(gpsStatusListener);
}
public void StartLocationListeners(){
try{
LocationManager LocatieManager=(LocationManager)myContext.getSystemService(Context.LOCATION_SERVICE);
LocatieManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 2000, 0, netwerklistener);
LocatieManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 2000, 0, gpslistener);
LocatieManager.addGpsStatusListener(gpsStatusListener);}
finally {
Log.d("StartListeners","Error: Listeners not calibrated");
}
}