需要添加权限: android.permission.CALL_PHONE
Intent intent = new Intent();//创建一个意图
intent.setAction(Intent.ACTION_CALL);//设置意图要干什么
intent.setData(Uri.parse("tel:"+number));//设置意图的参数 Uri.parse("tel:"+number)固定格式
startActivity(intent);//开启一个意图
原文:http://www.cnblogs.com/jiangxiaolong/p/4895540.html