我开始这样的电话意图:
String uri = "tel:" + number;
Intent callintent = new Intent(Intent.ACTION_CALL);
callintent.setData(Uri.parse(uri));
startActivity(callintent);
我可以在其中输入多个电话号码并让用户选择一个来拨打吗?无法使用联系人活动,号码很可能不在用户的联系人中。
我开始这样的电话意图:
String uri = "tel:" + number;
Intent callintent = new Intent(Intent.ACTION_CALL);
callintent.setData(Uri.parse(uri));
startActivity(callintent);
我可以在其中输入多个电话号码并让用户选择一个来拨打吗?无法使用联系人活动,号码很可能不在用户的联系人中。