android通过Intent.ACTION_VIEW打开时出现异常卡顿
通过vue与android交互拔打电话时
使用
if (url.startsWith("tel:")) {
Intent intent= new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);
return true;
}
发现非常卡顿
解决办法
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
参考http://www.cocoachina.com/articles/467072