1
private void getLocation(){ 
    locationManager = (LocationManager) getContext().getSystemService(Context.LOCATION_SERVICE); 
    List<String> providers = locationManager.getAllProviders(); 
    for (String provider : providers) { 
     Log.e("GPS_provider: ", provider); 
    } 
    Criteria criteria = new Criteria(); 
    bestProvider = locationManager.getBestProvider(criteria, false); 
    Log.e("Best_provider: ", bestProvider); 
    locationListener = new LocationListener() { 
     public void onLocationChanged(Location location) { 
      // Called when a new location is found by the network location provider. 
      Log.e("Loc_changed", ""+ location.getLatitude() + location.getLongitude()); 
      mLocation = location; 
     } 

     public void onStatusChanged(String provider, int status, Bundle extras) {} 

     public void onProviderEnabled(String provider) { 
      Log.e("Provider_enabled:", provider); 
     } 

     public void onProviderDisabled(String provider) { 
      Log.e("Provider_disabled:", provider); 

     } 
    }; 
    // Register the listener with the Location Manager to receive location updates 
    try { 
     locationManager.requestLocationUpdates(bestProvider, 0, 0, locationListener); 
     mLocation = locationManager.getLastKnownLocation(bestProvider); 
     if (mLocation == null){ 
      mLocation = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER); 
      Log.e("GPS network", "true"); 
     } 
    } catch (SecurityException e){ 
     Log.e("GPS problem", "GPS problem "+e.getMessage()); 
    } 
} 

我試圖讀取位置做一個HTTP GET找回我以前的記錄:的Android requestLocationUpdates與GPS空

private void loadBusinesses(){ 
    gpsMsg.setVisibility(View.INVISIBLE); 
    getLocation(); 
    currentView = GEOVIEW; 
    businessesList.nextUrl = "null"; 
    if (!businessesList.isEmpty()){ 
     Log.e("businessList ","not empty"); 
     businessesList.clear(); 
     notifyAdapter(); 
    } 

    Double latitude; 
    Double longitude; 
    try{ 
     latitude = mLocation.getLatitude(); 
     longitude = mLocation.getLongitude(); 
    } catch (NullPointerException e){ 
     Log.e("GPS", "Location unavailable"); 
     gpsMsg.setVisibility(View.VISIBLE); 
     swipeContainer.setRefreshing(false); 
     return; 
    } 

}

即使我檢查,如果打開GPS,當我嘗試使用GPS位置時,我總是得到空白,然後它從網絡中獲取位置。 因爲這個原因,我試圖將GPS設置設置爲「僅GPS」,並且我得到NULL,所以沒有位置。 我讀過所有其他帖子,但我一直在GPS空值。我在使用USB調試的真實設備上模擬。

有什麼想法?

回答

0

getLastKnownLocation()經常返回null。這很正常。你只用getLastKnownLocation()

  • 作爲一種優化,以避免等待位置定位;或
  • 如果你生活中可以沒有位置數據

否則,你需要推遲您的HTTP GET請求,直到您在onLocationChanged()中獲得給您的位置。請記住,您可能會從未獲得位置修復。

正確使用LocationManager可以在任何體面的Android書籍,Android課程和the documentation中找到。

1

我相信你解釋錯了LocationManager的工作原理。

當您撥打locationManager.requestLocationUpdates(bestProvider, 0, 0, locationListener)時,您只是註冊接收位置更新,通常需要一段時間才能發生(並且可能永遠不會發生,正如CommonsWare指出的那樣)。此電話不會爲您提供更新的位置,因此,在下一行代碼中,當您撥打getLastKnownLocation()時,正常行爲是接收null

不過,我相信應對您的情況最好的辦法是這樣的:

1 - 首先:檢查getLastKnownLocation()返回是否爲空或不(如果選擇的LocationProvider早已最近的位置,從您的應用程序,甚至從另一個應用程序,它會返回給你在這裏。但要注意:這個位置可能是非常過時!)。

2 - 如果getLastKnownLocation()返回null,那麼你就沒有別的選擇,只能要求一個全新的位置,等待它的到來,這將發生在在LocationListener的方法onLocationChanged。因此,您有兩種選擇:(a)致電requestSingleUpdate(),這將返回一個更新的位置只是一次,或(b)呼叫requestLocationUpdates(),它將註冊locationManager以接收定期位置更新(並且將消耗更多電池)。

3 - 在兩個選項中,當您收到位置更新時,LocationListener中的方法onLocationChanged將被調用,然後您可以使用此方法調用您的loadBusinesses,並收到全新的位置。

希望這是明確的;)

----- -----編輯

你也應該要求在運行時位置的權限,要求requestSingleUpdaterequestLocationUpdates之前。要做到這一點,用這個片段:

if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) { 
    // If permission is not granted, request it from user. When user responds, your activity will call method "onRequestPermissionResult", which you should override 
    ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION}, 1); 
} else { 
    locationManager.requestSingleUpdate(bestProvider, locationListener, null) 
} 

如果權限沒有被授予之前,用戶將被提示授予它(或沒有)。因此,您還應該@在您的活動中覆蓋方法onRequestPermissionResult,以檢查用戶是否授予了權限,然後正確響應。這是方法,你應該重寫:

@Override 
public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) { 
    switch (requestCode) { 
     case 1: 
      if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) { 
       // PERMISSION WAS GRANTED 
      } else { 
       // USER DID NOT GRANT PERMISSION 
      } 
      break; 
    } 
} 
+0

我用你的建議是這樣的: 'locationManager.requestSingleUpdate(bestProvider,locListen,NULL);' 在我的locListen有: '@覆蓋 公共無效onLocationChanged(位置定位){ Log.e(「Single_loc 「,location.getLongitude()+」「+ location.getLatitude()); } 問題是,如果我使用模擬器,我必須從菜單中發送位置然後它讀取位置,但是如果我使用真實設備,它沒有任何作用,它不會投影onLocationChanged,onStatusChanged, onProviderEnabled既不是onProviderDisabled。 – exrezzo

+0

而且我也嘗試使用Google地圖,即使我在室內也能正常工作。 – exrezzo

+0

您是否請求訪問設備位置的權限?您應該在您的AndroidManifest中通過添加權限「ACCESS_COARSE_LOCATION」和「ACCESS_FINE_LOCATION」來完成此操作。另外,從Android 6.0開始,在調用requestSingleUpdate之前,您必須在運行時請求此權限。在這裏閱讀:https://developer.android.com/training/permissions/requesting.html –

0

事情有關getLastKnownLocation()是,如果你更改設置的位置提供者,重新啓動設備,或關閉定位服務和關閉您的設備上,最後已知的位置已清除並將返回null。最重要的是,如果返回一個位置點,它可能會很老,以至於它可能無關緊要。應該使用getLastKnownLocation()函數作爲提示。

關於你的評論,說你在室內使用GPS時什麼都沒有,但Google地圖仍然有效... Google地圖使用FusedLocationProviderApi,它同時使用GPS和網絡爲您提供最佳位置。如果您只在您的設備上使用GPS,並打開Goog​​le地圖,您會發現它會給您一個壞點(灰點),或者根本沒有任何意義。

我會建議您使用Google's Fused Location供應商爲您的位置需求,因爲它會爲您節省電池,可靠的回退,以防萬一您丟失了GPS,並且它擁有自己的最後一次已知的位置功能,似乎並不涉及LocationManager

相關問題