我的代码是:

    x="*141#";
    String phoneCallUri =("tel:" + x);
    Intent phoneCallIntent = new Intent(Intent.ACTION_DIAL);
    phoneCallIntent.setData(Uri.parse(phoneCallUri));
    startActivity(phoneCallIntent);


当调用电话功能时,它不只使用#141 * 141。请帮助我
提前致谢

最佳答案

您应该将第二行更改为:String phoneCallUri = "tel:" + Uri.encode(x);

关于android - 如何在电话功能android中的数字末尾附加#,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17786715/

10-09 16:14