0
我正在使用android 4.4.2,我試圖獲取設備位置座標而沒有成功。Android 4.4.2 - 獲取設備位置座標
這是我使用的代碼:
private double[] getLastBestLocation() {
LocationManager lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
List<String> providers = lm.getProviders(true);
/* Loop over the array backwards, and if you get an accurate location, then break out the loop*/
Location l = null;
for (int i=providers.size()-1; i>=0; i--) {
l = lm.getLastKnownLocation(providers.get(i));
if (l != null) break;
}
double[] gps = new double[2];
if (l != null) {
gps[0] = l.getLatitude();
gps[1] = l.getLongitude();
}
return gps;
}
我試過在SO提供不同的答案:
在清單:
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
在課程,具體爲:
How do I get the current GPS location programmatically in Android?
How to get Android GPS location
爲重複,因爲其他的答案並沒有解決我的問題,請不要標記這個問題。