0
public Location getLocation(String provider) {
if (locationManager.isProviderEnabled(provider)) {
locationManager.requestLocationUpdates(provider,
MIN_TIME_FOR_UPDATE, MIN_DISTANCE_FOR_UPDATE, this);
if (locationManager != null) {
location = locationManager.getLastKnownLocation(provider);
return location;
}
}
return null;
}
エラーが発生しました。私はエラーが発生しました。これはユーザーによって拒否される必要があります。解決できますか?Android逆gecode
マニフェストで私は、許可のこれらのセットを提供してきた
エラーが発生したときにスタックトレースを投稿してくださいことはできますか?ありがとうございました。 –
@Rajesh vあなたのtargetSdkは何ですか? – Nisarg
マニフェストファイルでaccess_fine_locationとAccess_coarse_locationの権限を追加します。テストにmarshmallow(または> SDK 21)を使用している場合は、実行時に動的に権限を追加する必要があります。https://developer.android.com/training/permissions/requesting.html –