android 拔打电话功能

1             private void phoneCall(String num) { 

2                 String phoneNum = "tel:" + num;

3                 Uri smsToUri = Uri.parse(phoneNum);  

4                 Intent intent = new Intent(Intent.ACTION_CALL, smsToUri);  

5                 startActivity(intent);  

6             } 

android 拔打电话功能

你可能感兴趣的:(android)