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
posted @ 2020-04-27 15:49  only_books  阅读(597)  评论(0编辑  收藏  举报