拨打电话号码
Posted nuochong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了拨打电话号码相关的知识,希望对你有一定的参考价值。
//拨打电话号码已经封装好了并且已经暴露出来了 //Intent 意图 setAction 要去行动 Intent intent= new Intent(); intent.setAction(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:"+number)); startActivity(intent);
记住要加权限
以上是关于拨打电话号码的主要内容,如果未能解决你的问题,请参考以下文章