android增添打电话功能
android添加打电话功能
在Mainfest中添加权限
Intent i = new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+phone)); startActivity(i);
在Mainfest中添加权限
<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>