我需要在应用程序中检测用户的粗略位置(只是城市和国家)。我有使用 android.location.LocationManager 类的普通 android 代码。但是当我移植到 NokiaX 时,该应用程序不报告任何位置。HERE sdk 只谈论使用 HERE 地图(我不需要)
问问题
71 次
1 回答
0
我刚刚尝试了以下权限:
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET"/>
并带有代码:
LocationManager locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
在我的阳台上获得第一个位置不到 10 秒,然后它每秒都会更新。因此,我看不到那里的问题。
于 2014-06-19T11:46:07.773 回答