legerb wrote:
> I'm generating outgoing call using this:
> Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:
> 123456;1#3333#"));
> 123456 - is the phone number i want to dial
> 1#3333# - post dial DTMF sequence i'm trying to send.
> The problem is that somehow the chars next to '#' (including) are cut
> off somewhere.
> Because when I catch this intent and try to read the phone number:
> intent.getExtras().getString(Intent.EXTRA_PHONE_NUMBER)
> returns the cut off string - "123456;1"
> It's cruicial for me to send the '#' dtmf. Is this considered to be an
> ilegal character? W

Have you tried URL-encoding the # sign?

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com
_The Busy Coder's Guide to Android Development_ Version 1.4 Published!

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to