Android How to make a call that includes “#” or “p” in the dial?

后端 未结 7 1774
伪装坚强ぢ
伪装坚强ぢ 2020-12-31 06:44

I need to make calls in my Android app that includes \"#\" or \"p\" in the dial.

If I use the next code:

Intent intent = new Intent(Intent.ACTION_CAL         


        
7条回答
  •  旧巷少年郎
    2020-12-31 07:45

    Pause is not supported in the tel URI spec.

    http://www.ietf.org/rfc/rfc3966.txt

    As stated in another answer %23 can be used to substitute for #.

提交回复
热议问题