我知道这种类型的问题经常发生在堆栈溢出上。我看过很多有类似问题的帖子,阅读官方文档但最后我无法理解运行时权限如何在android中运行。
首先我收到以下错误:
Call requires permissions which may be rejected by user
当我生成Android Studio建议的代码时,我明白了:
if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, android.Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// TODO: Consider calling
// ActivityCompat#requestPermissions
// here to request the missing permissions, and then overriding
// public void onRequestPermissionsResult(int requestCode, String[] permissions,
// int[] grantResults)
// to handle the case where the user grants the permission. See the documentation
// for ActivityCompat#requestPermissions for more details.
return;
}
我的第一个问题是:如果我只想使用精确的位置,我还能检查粗略位置权限吗?
接下来我该怎么办?我应该在生成的代码的括号中包含哪些内容?我如何以及在何处申请权限?
以下是我必须包含权限(mLastLocation行)的代码部分:
private void displayLocation() {
mLastLocation = LocationServices.FusedLocationApi.getLastLocation(mGoogleApiClient);
if (mLastLocation != null) {
double latitude = mLastLocation.getLatitude();
double longitude = mLastLocation.getLongitude();
lblLocation.setText(latitude + ", " + longitude);
} else {
lblLocation.setText("(Couldn't get the location. Make sure location is enabled on the device)");
}
}
AndroidManifest中定义的权限:
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
非常感谢!
答案 0 :(得分:1)
如果我只想使用精确的位置,我还能检查粗略位置权限吗?
没有。请理解,IDE快速修复是没有很多智能的模板。
我应该在生成的代码的括号中包含哪些内容?我如何以及在何处申请权限?
嗯,这在生成的代码注释中有解释。在该块中,请致电ActivityCompat.requestPermissions()
以请求您的许可。然后,在用户授予或拒绝许可后,您将在onRequestPermissionsResult()
中被调用。
然后,您可以在两个地方调用displayLocation()
方法:
代码生成的else
if
块
在onRequestPermissionsResult()
中,如果用户授予了权限
This sample app演示了请求权限和处理Play服务集成,作为查找设备位置的一部分。
此外,关于您的displayLocation()
方法,请不要认为getLastLocation()
将始终返回某个位置。即使可能启用了提供程序,设备当前也可能无法跟踪其位置。
答案 1 :(得分:1)
好位置:
精确位置提供更好,更准确的位置。允许使用GPS_PROVIDER和NETWORK_PROVIDER
粗略位置:
粗略位置提供的位置不太准确。它允许仅使用NETWORK_PROVIDER来确定位置。
上下文:
Context允许访问特定于应用程序的资源和类,以及对应用程序级操作的上调,例如启动活动,广播和接收意图等。
您可以使用以下类
启用权限UtilityLocation.Java
public class UtilityLocation {
public static final int MY_PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE = 123;
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
public static boolean checkPermission(final Context context)
{
int currentAPIVersion = Build.VERSION.SDK_INT;
if(currentAPIVersion>= Build.VERSION_CODES.M)
{
if (ContextCompat.checkSelfPermission(context, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
if (ActivityCompat.shouldShowRequestPermissionRationale((Activity) context, Manifest.permission.ACCESS_FINE_LOCATION)) {
AlertDialog.Builder alertBuilder = new AlertDialog.Builder(context);
alertBuilder.setCancelable(true);
alertBuilder.setTitle("Permission necessary");
alertBuilder.setMessage("Camera permission is necessary");
alertBuilder.setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() {
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
public void onClick(DialogInterface dialog, int which) {
ActivityCompat.requestPermissions((Activity) context, new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, MY_PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE);
}
});
AlertDialog alert = alertBuilder.create();
alert.show();
} else {
ActivityCompat.requestPermissions((Activity) context, new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, MY_PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE);
}
return false;
} else {
return true;
}
} else {
return true;
}
}
}
MainActivity.Java
检查权限是否已启用
Private Context mContext;
mContext=MainActivty.this;
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
// only for gingerbread and newer versions
boolean resultLocation = UtilityLocation.checkPermission(mContext);
if (resultLocation) {
//Allow Permission and Call your Location Activity.
}
} else {
//Call your Location Activity
}
}