标签: 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);