标签:start 封装 data int star ber color uri new
//拨打电话号码已经封装好了并且已经暴露出来了 //Intent 意图 setAction 要去行动 Intent intent= new Intent(); intent.setAction(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:"+number)); startActivity(intent);
记住要加权限
标签:start 封装 data int star ber color uri new
原文地址:https://www.cnblogs.com/NuoChong/p/10425750.html