Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my app I set both providers with fine and coarse accuracy to listen for location updates. I understood that using fine will be location provided by the gps, and using coarse location provided by the network provider. (from this link http://www.alonsoruibal.com/using-two-locationproviders-on-android/). Now if the gps is disabled I want my app to switch to network, and when gps is enabled to switch back it. This can be done using onStatusChanged method right? My question is, is this code ok?

public static final int OUT_OF_SERVICE = 0;
public static final int TEMPORARILY_UNAVAILABLE = 1;
public static final int AVAILABLE = 2;

    Criteria criteria = new Criteria();
    criteria.setAltitudeRequired(false);
    criteria.setBearingRequired(false);
    criteria.setCostAllowed(false);
    criteria.setPowerRequirement(Criteria.POWER_LOW);

    criteria.setAccuracy(Criteria.ACCURACY_FINE);
    providerFine = locationManager.getBestProvider(criteria, true);

    criteria.setAccuracy(Criteria.ACCURACY_COARSE);
    providerCoarse = locationManager.getBestProvider(criteria, true);

@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
    // TODO Auto-generated method stub
    if(provider.equals(providerFine)){
    if (status == 0) {
      locationManager
      .requestLocationUpdates(providerCoarse,60000, 20, this);
       }

    if (status == 2){
        locationManager
               .requestLocationUpdates(providerFine,60000,20,this); 
    }
    }//provider == fine


}

}

And also, if updates are already requested, (somewhere before in my code, I didn't put that here) (for both providers), would it be ok if I request them again in this onStatusChanged method. Or I have to remove updates first?

share|improve this question

1 Answer

up vote 0 down vote accepted

It looks fine to me. I would recommend removing any update listeners before adding anymore. To keep it clean and consistent.

share|improve this answer
Ok, thank u, I was wondering about that. Thanks – Sandra Aug 11 '11 at 11:38
@Sandra can you please confirm the switching is working fine, i am trying to achieve a similar task. – Lenin Jan 2 '12 at 7:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.