我正在尝试检查 GPS 和/或 WiFi 和移动网络位置是否已定位。我当前的代码仅适用于 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();
}