我的应用程序无法获取我的 GPS 位置。
首先,我的清单中有两件事:
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
然后我有一个这样的位置代码:
LocationManager locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
LocationListener locationListener = new LocationListener() {
public void onLocationChanged(Location location) {
// Called when a new location is found by the network location provider.
makeUseOfNewLocation(location);
}
public void onStatusChanged(String provider, int status, Bundle extras) {}
public void onProviderEnabled(String provider) {}
public void onProviderDisabled(String provider) {}
};
locationManager.requestLocationUpdates(0l, 0f, new Criteria(), locationListener, Looper.getMainLooper());
现在奇怪的是:
当我启用了 wifi 并且我在我的网络中时,我得到了一个位置。如果我只启用了 GPS,我就无法获得我的位置。甚至我在手机顶部也没有看到显示应用程序何时使用我的 gps 的 gps 图标。
这里有什么问题?