如何在不保存号码的情况下拨打电话?

时间:2014-10-23 16:21:12

标签: android android-intent start-activity

我使用以下代码在Android中拨打电话,但我想隐藏被呼叫的号码,而不是将其保存在通话记录中。有可能吗?

String num="xxx-xxx-xxx"; 
String number = "tel:" + num.trim();
Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(number)); 
startActivity(callIntent);

0 个答案:

没有答案
相关问题