在没有拨号的情况下在android中启动呼叫活动

时间:2014-04-09 10:01:30

标签: android android-activity phone-call

我一直在Android中搜索如何执行此操作,我发现了这个问题:

How to make a phone call in android and come back to my activity when the call is done?

其中包含这段代码:

String url = "tel:3334444";
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(url));

打开拨号活动并拨打第二个参数中指定的号码。问题是我需要打开拨号活动而不立即开始拨号,但第二个参数中的数字已经插入到数字文本框中。

1 个答案:

答案 0 :(得分:0)

Intent callIntent = new Intent(Intent.ACTION_DIAL);
callIntent.setData(Uri.parse("tel:" + phone_number));
startActivity(callIntent);