Android拨打电话

1、直接拨打电话

Intent intentPhone = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber));  
startActivity(intentPhone);
 需权限

2、跳转到拨号面板

Intent intent = newIntent(Intent.ACTION_DIAL,Uri.parse("tel:" + phoneNumber));  
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  
startActivity(intent);  

你可能感兴趣的:(Android拨打电话)