0

I have an application who compose code and call but # DOESN't work it compose just *710

Intent appel = new Intent(Intent.ACTION_CALL,Uri.parse("tel:*710#"));
vjdhama
  • 4,878
  • 5
  • 33
  • 47
user3549052
  • 11
  • 1
  • 3
  • possible duplicate of [Sending ACTION\_CALL Intent in Android containing hash # sign](http://stackoverflow.com/questions/7280209/sending-action-call-intent-in-android-containing-hash-sign) – Protomen Apr 23 '14 at 20:19

1 Answers1

0

Encoding the uri for # before passing for parsing solves the problem.

String uri = "tel:*710%23";
Intent appel = new Intent(Intent.ACTION_CALL,Uri.parse(uri));
vjdhama
  • 4,878
  • 5
  • 33
  • 47