标签: android ussd
我必须拨打带有'*'和'#'的号码,如USSD。我怎么能在android中实现这个是我的代码
Intent dial = new Intent(Intent.ACTION_CALL); String encodedHash = Uri.encode("#"); Uri noUri = Uri.parse("tel:*123456789" +encodedHash); dial.setData(noUri); startActivity(dial);