我有用于检测位置的代码:
public class LocationDetector implements LocationListener{
private LocationManager locationManager;
private String provider;
private Location lastloc;
private Context _context;
public LocationDetector(Context context){
_context = context;
}
public Location getlastloc(){
Criteria criteria = new Criteria();
provider = locationManager.getBestProvider(criteria, false);
Location location = locationManager.getLastKnownLocation(provider);
return location;
}
public void start(){
locationManager = (LocationManager) _context.getSystemService(Context.LOCATION_SERVICE);
lastloc = getlastloc();
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 400, 1, (LocationListener) this);
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 400, 1, (LocationListener) this);
}
public void stop(){
locationManager.removeUpdates((LocationListener) this);
}
@Override
public void onLocationChanged(Location location) {
Log.d("states", "onLocationChanged()");
lastloc = location;
Log.d("states", "lat: "+lastloc.getLatitude()+"lat: "+lastloc.getLongitude());
}
@Override
public void onProviderDisabled(String arg0) {
}
@Override
public void onProviderEnabled(String arg0) {
}
@Override
public void onStatusChanged(String arg0, int arg1, Bundle arg2) {
}
}
问题是onLocationChanged()只有在手机上启用了gps选项并且只启用了wifi /移动网络选项时才会触发onLocationChanged()不会触发并且不会检测位置。
即使我连接到互联网并启用了wifi /移动网络选项,也不会再次检测位置。
所以这个选项适用于什么?什么时候有效?
答案 0 :(得分:0)
你应该检查你的mannifest文件需要哪些权限。 根据文档,当使用gps和网络提供程序时,您应该定义access_fine_location,其中包含两者的权限。
查看您的标准,在设置空标准时,您将无法获得任何更新。
http://developer.android.com/reference/android/location/Criteria.html
答案 1 :(得分:0)
我看到你正在使用
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 400, 1, (LocationListener) this);
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 400, 1, (LocationListener) this);
首先,您要求从网络提供商处获取更新,然后再次请求从GPS提供商处获取更新。因此,您只能从GPS提供商处获得更新。您需要添加以下条件才能满足您的要求。
//if condition to check if GPS is available
if (locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 400, 1, (LocationListener) this);
}
else if (mlocManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)) {
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 400, 1, (LocationListener) this);
}