我正尝试拨打一个以,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);
答案 0 :(得分:0)
拨号盘中不允许使用逗号,请用加号或井号替换逗号。
它将开始工作。