从Build工具22.0切换到23.1后,我在启动活动方法中遇到错误。
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:" + phoneNumber));
callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(callIntent);
第startActivity(callIntent)
行显示的错误是
呼叫需要用户可能拒绝的权限:代码应该 明确检查是否有权限(使用
checkPermission
)或明确处理潜力SecurityException
位置和内容解析程序显示相同的错误。 我通过检查条件
解决了这个问题 if (mContext.checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED
|| mContext.checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION) == PackageManager.PERMISSION_GRANTED) {
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
location = LocationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
}
调用 startActiivty 方法所需的条件究竟是什么? 如果可能,请提供可能导致相同类型错误的其他权限的详细信息。
答案 0 :(得分:6)
调用startActivity方法需要什么条件?
您的代码
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:" + phoneNumber));
callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(callIntent);
使用需要权限的Intent.ACTION_CALL
意图,即android.permission.CALL_PHONE
个。
通常你会把它放在你的清单
中<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>
但是使用api 23+,你必须检查权限运行时,就像你对位置一样:
if (mContext.checkSelfPermission(Manifest.permission.CALL_PHONE) == PackageManager.PERMISSION_GRANTED) {
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:" + phoneNumber));
callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(callIntent);
}