0

我正在尝试拨打一个带有类似结尾,01# 并希望在拨号屏幕上显示的号码,如果有人对此类问题有解决方案,我找不到任何解决方案,请提前给予并感谢。我试过这个。

  String formattedNumber = PhoneNumberUtils.formatNumber("1111111111,12#",  
  Locale.getDefault().getCountry());
  Intent callIntent = new Intent(Intent.ACTION_CALL);
  callIntent.setData(Uri.parse("tel:"+formattedNumber));//change the number
  startActivity(callIntent);
4

1 回答 1

0

拨号盘中不允许使用逗号,请将逗号替换为加号或井号。

它将开始工作。

于 2019-06-06T13:46:41.280 回答