アプリで新しい Location API を使用していますが、ユーザーが電話で位置情報へのアクセスを有効にしているかどうかを検出する方法を知りたいです。
LocationClient をセットアップし、LocationRequest を実行しています。これを行う前に、実際にユーザーの場所を取得できるかどうかを確認するにはどうすればよいですか?
アプリで新しい Location API を使用していますが、ユーザーが電話で位置情報へのアクセスを有効にしているかどうかを検出する方法を知りたいです。
LocationClient をセットアップし、LocationRequest を実行しています。これを行う前に、実際にユーザーの場所を取得できるかどうかを確認するにはどうすればよいですか?
onConnected では、次のようなメソッドを呼び出すことができます。
private boolean checkLocationProviders()
{
if(mLocationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER))
{
return true;
}
else
{
if(mLocationManager.isProviderEnabled(LocationManager.GPS_PROVIDER))
return true;
else
return false;
}
}
false が返された場合は、次の方法で設定画面を開くことができます。
startActivity(new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS));
これはあなたを助けるでしょう
// flag for GPS status
boolean isGPSEnabled = false;
// flag for network status
boolean isNetworkEnabled = false;
// flag for GPS status
boolean canGetLocation = false;
Location location = null; // location
double latitude; // latitude
double longitude; // longitude
// The minimum distance to change Updates in meters
private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10; // 10 meters
// The minimum time between updates in milliseconds
private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; // 1 minute
// Declaring a Location Manager
protected LocationManager locationManager;
public Location getLocation() {
try {
locationManager = (LocationManager) mContext
.getSystemService(LOCATION_SERVICE);
// getting GPS status
isGPSEnabled = locationManager
.isProviderEnabled(LocationManager.GPS_PROVIDER);
// getting network status
isNetworkEnabled = locationManager
.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if (!isGPSEnabled && !isNetworkEnabled) {
// no network provider is enabled
} else {
this.canGetLocation = true;
if (isNetworkEnabled) {
locationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
Log.d("Network", "Network Enabled");
if (locationManager != null) {
location = locationManager
.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
// if GPS Enabled get lat/long using GPS Services
if (isGPSEnabled) {
if (location == null) {
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
Log.d("GPS", "GPS Enabled");
if (locationManager != null) {
location = locationManager
.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
return location;
}