我試圖檢查移動網絡位置是否位於GPS和/或WiFi &。我目前的代碼只適用於GPS,我試圖嘗試包括網絡提供商,但我收到以下錯誤。檢查是否啓用了GPS和/或移動網絡位置
第一個錯誤
The method isProviderEnabled(String) in the type LocationManager is not applicable for the arguments (String, String)
目前代碼
if (locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER, LocationManager.NETWORK_PROVIDER)){
Toast.makeText(this, "GPS is Enabled in your device", Toast.LENGTH_SHORT).show();
}else{
displayAlert();
}
你沒有使用新的[Fused Location provider](https://developer.android.com/google/play-services/location.html)的原因?它提供的位置更快,更節能,並將所有提供商組合在一起。 – ianhanniballake