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();
}