After launching listener by the following code is working fine.
LocationManager locationManager =(LocationManager) getSystemService(Context.LOCATION_SERVICE)
My listener implemention
public class GPSLocationListener extends Activity implements LocationListener {
@Override
public void onLocationChanged(Location location) {
//code here
}
}
when i try to remove listener using follwing code compile time error.
locationManager.removeGpsStatusListener(GPSLocationListener )