i want to ask about the criteria of gps provider
take a look to my code :
private void initLocationManager() {
locManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
String bestProvider;
locListener = new LocationListener() {
@Override
public void onLocationChanged(Location newLocation) {
tampilkanPosisikeMap(newLocation);
}
public void onProviderDisabled(String arg0) {
Functions.MakeToast(getApplicationContext(), "GPS tidak tersedia");
}
public void onProviderEnabled(String arg0) {
Functions.MakeToast(getApplicationContext(), "GPS tersedia");
}
public void onStatusChanged(String arg0, int arg1, Bundle arg2) {
}
};
// look here
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE);
criteria.setAltitudeRequired(false);
criteria.setBearingRequired(false);
criteria.setCostAllowed(true);
criteria.setPowerRequirement(Criteria.POWER_LOW);
bestProvider = locManager.getBestProvider(criteria, true);
locManager.getLastKnownLocation(bestProvider);
locManager.requestLocationUpdates(bestProvider, 5000, 1, locListener);
}
look at the criteria section,
are it works like this?
if it doesn't meet the criteria to get the GPS_PROVIDER, then it will choose the NETWORK_PROVIDER as provider
was it correct or wrong?
thanks sorry for my bad english :(