Android 电话拨号
- - CSDN博客推荐文章category.DEFAULT");
intent.setData(Uri.parse("tel:"+number));
//方法内部会自动为Inter 添加类别:android.intent. 在AndroidMainfest.xml中应加入:. //申请使用拨号的权限 安装的时候会用户提醒使用的时候会产生费用.
关键代码:
Intent intent = new Intent(); intent.setAction("android.intent.action.CALL"); //intent.addCategory("android.intent。category.DEFAULT"); intent.setData(Uri.parse("tel:"+number)); //方法内部会自动为Inter 添加类别:android.intent。category.DEFAULT startActivity(intent);
在AndroidMainfest.xml中应加入:
//申请使用拨号的权限 安装的时候会用户提醒使用的时候会产生费用
<uses-permission android:name="android.permission.CALL_PHONE"/>