Android拨打电话的方式

方式一:直接拨打

intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:136xxxxxxxxx"));
startActivity(intent);

方式二:先跳入系统拨打电话界面

Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:136xxxxxxxxx"));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
ctx.startActivity(intent);

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