我在我的应用程序中使用测试GPS提供程序,当我在使用后尝试清理测试提供程序时。
问题是我的GPS在那之后停止工作,我做错了什么?
这是我的代码:
if (locationManager.getProvider(LocationManager.GPS_PROVIDER)!=null){
locationManager.setTestProviderEnabled(LocationManager.GPS_PROVIDER, false);
locationManager.removeTestProvider(LocationManager.GPS_PROVIDER);
}
我知道有一个newer API,但我更喜欢使用旧版本。