0

如果设备丢失 GPS 信号,LocationManager 是否有能力从 GPS 更改为更多的课程提供者?

据我所知不是,但我不是 100% 确定,所以我需要问

(我问的原因是,我很想制作自己的 LocationManagerManager 来处理这类问题。我可能让它接受多个 Criteria 对象,这些对象在传统 LocationManager 不灵活的各种情况下以某种顺序尝试够了。但我不想重新发明轮子,例如,如果谷歌在我不知道的一些方法/类中处理了这个)。

谢谢

4

2 回答 2

1

我不知道:您的选择可能是最好的主意。注册所有可用的提供者,然后返回最佳的可用位置值。

于 2011-05-12T23:10:19.477 回答
0

是的,它已经可用了。谷歌一下,你必须得到它。检查此功能:

`

public boolean testProviders() {  
    Log.e(LOG_TAG, "testProviders");  
    String location_context = Context.LOCATION_SERVICE;  
    locationmanager = (LocationManager) getSystemService(location_context);  
    List<String> providers = locationmanager.getProviders(true);  
    for (String provider : providers) {    
        Log.e(LOG_TAG, "registering provider " + provider);  
        listener = new LocationListener() {  
            public void onLocationChanged(Location location) {  
                // keep checking the location - until we have  
                // what we need   
                //if (!checkLoc(location)) { 
                Log.e(LOG_TAG, "onLocationChanged");  
                locationDetermined = checkLoc(location);   
                //}   
            }  
            public void onProviderDisabled(String provider) { 
            }
            public void onProviderEnabled(String provider) {
            }
            public void onStatusChanged(String provider, int status,  
                    Bundle extras) {  
            }  
        };
        locationmanager.requestLocationUpdates(provider, 0,  
                0, listener);  
    }
    Log.e(LOG_TAG, "getting updates");  
    return true;  
}  

`

于 2011-05-12T23:50:00.437 回答