我正在尝试拨打一个带有类似结尾,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);