【发布时间】:2017-05-02 20:21:49
【问题描述】:
我正在尝试请求 ACCESS_FINE_LOCATION 的权限并不断收到错误“无法解析符号 'MY_PERMISSIONS_REQUEST_ACCESS_FINE_LOCATION”,这是我的代码,有人知道问题是什么吗?
if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
!= PackageManager.PERMISSION_GRANTED) {
if (ActivityCompat.shouldShowRequestPermissionRationale(this, Manifest.permission.ACCESS_FINE_LOCATION)){
checkSelfPermission("Accept this to use location functionality");
}
else{
ActivityCompat.requestPermissions(GpMap.this,
new String[]{Manifest.permission.ACCESS_FINE_LOCATION},
MY_PERMISSIONS_REQUEST_ACCESS_FINE_LOCATION);
}
【问题讨论】:
标签: java android google-maps