我試圖獲取用戶的位置:如何在我的應用程序內啓用網絡和gps位置?
//獲取GPS狀態
isGPSEnabled = locationManage.isProviderEnabled(LocationManager.GPS_PROVIDER);
// getting network status
isNetworkEnabled = locationManager
.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if (!isGPSEnabled && !isNetworkEnabled) {
// no network provider is enabled
Log.e(MyLogger.TAG, "Non providers are enabled");
我需要用戶設置enable network location
或turn on GPS
。
我該如何幫助用戶完成上述每個選項?
打開設備設置頁面,回到我的背部按活動。
僅在我的應用程序中更改這兩個設備設置?
意味着打開一個確認對話框,使這兩個設置。
嘗試此鏈接:http://stackoverflow.com/questions/6095919/android-how-to-get-current-location-latitude-and-longitude, – SacreDeveloper