我正在查看Play Services 7.0
可以在此处找到的文档:
http://android-developers.blogspot.in/2015/03/google-play-services-70-places-everyone.html?m=1
https://developers.google.com/android/reference/com/google/android/gms/location/SettingsApi
正如我们所看到的,Android 简化了应用程序启用位置的方式,只需使其成为一键式事务,这很棒。
但是,我无法理解的是,这将如何与权限模型结合使用。
我将尽量使我的查询尽可能清晰和简单。
例如引用文档:
要使用这个 API,首先创建一个GoogleApiClient
至少支持LocationServices.API
. 然后将客户端连接到Google Play services
:
mGoogleApiClient = new GoogleApiClient.Builder(context)
.addApi(LocationServices.API)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build()
...
mGoogleApiClient.connect();
然后创建一个LocationSettingsRequest.Builder
并添加LocationRequests
应用程序将使用的所有内容:
LocationSettingsRequest.Builder builder = new LocationSettingsRequest.Builder()
.addLocationRequest(mLocationRequestHighAccuracy)
.addLocationRequest(mLocationRequestBalancedPowerAccuracy);
然后检查当前位置设置是否满足:
PendingResult<LocationSettingsResult> result =
LocationServices.SettingsApi.checkLocationSettings(mGoogleClient, builder.build());
返回时PendingResult
,客户端可以通过查看LocationSettingsResult
对象的状态代码来检查位置设置。客户端还可以通过调用来检索相关位置设置的当前状态getLocationSettingsStates()
:
result.setResultCallback(new ResultCallback<LocationSettingsResult>() {
@Override
public void onResult(LocationSettingsResult result) {
final Status status = result.getStatus();
final LocationSettingsStates = result.getLocationSettingsStates();
switch (status.getStatusCode()) {
case LocationSettingsStatusCodes.SUCCESS:
// All location settings are satisfied. The client can initialize location
// requests here.
...
break;
case LocationSettingsStatusCodes.RESOLUTION_REQUIRED:
// Location settings are not satisfied. But could be fixed by showing the user
// a dialog.
try {
// Show the dialog by calling startResolutionForResult(),
// and check the result in onActivityResult().
status.startResolutionForResult(
OuterClass.this,
REQUEST_CHECK_SETTINGS);
} catch (SendIntentException e) {
// Ignore the error.
}
break;
case LocationSettingsStatusCodes.SETTINGS_CHANGE_UNAVAILABLE:
// Location settings are not satisfied. However, we have no way to fix the
// settings so we won't show the dialog.
...
break;
}
}
});
如果状态码是RESOLUTION_REQUIRED
,客户端可以调用startResolutionForResult(Activity, int)
来调出一个对话框,请求用户允许修改位置设置以满足这些请求。对话的结果将通过onActivityResult(int, int, Intent)
. 如果客户端对可用的位置提供程序感兴趣,它可以LocationSettingsStates
通过调用从 Intent中检索 a fromIntent(Intent)
:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
final LocationSettingsStates states = LocationSettingsStates.fromIntent(intent);
switch (requestCode) {
case REQUEST_CHECK_SETTINGS:
switch (resultCode) {
case Activity.RESULT_OK:
// All required changes were successfully made
...
break;
case Activity.RESULT_CANCELED:
// The user was asked to change settings, but chose not to
...
break;
default:
break;
}
break;
}
}
上面的代码片段将向用户显示一个带有“是”和“否”选项的位置对话框,单击“是”即可启用位置。但是该文档没有说明有关实际创建该对话框的任何内容。是系统自己处理的吗?如果是这样,需要使用什么方法?
此外,当尝试使用LocationServicesAPI
权限模型时,流程应该如何工作?
这是否意味着我们ACCESS_FINE_LOCATION permission
首先显示请求的权限模型对话框,如果授予该权限,然后我们开始显示“需要启用位置”对话框?这是Android推荐的方式。我没有看到任何关于此的文档。
TL;博士
我们如何使用新的权限模型 API 和
LocationServicesAPI
两者,因为它们都涉及多个 popus。有安卓推荐的方法吗?如果用户授予
ACCESS_FINE_LOCATION
权限但不同意启用位置,那么该流程应该如何工作。如果用户授予
ACCESS_FINE_LOCATION
权限并同意最初启用位置,但稍后禁用位置,那么该流程应该如何工作。我们如何创建一键式事务对话框以要求用户启用位置服务(我不参考权限对话框)。Google Maps 应用程序使用一个似乎是系统提供的对话框的对话框。但是,我找不到任何文档。
任何答案,对此的想法将不胜感激!
如果需要进行任何更正,请发表评论而不是投反对票。
谢谢!