[android-developers] Re: access to internal telephony

2016-01-12 Thread R.Rajan
hi My dialing no is like this 800505,4,1234567890,00919446481000 Up to last coma, its working. but the last 14 digit is the destination mobile no to dial. but its not taking . any chance to dial the above numbers using this code Uri uri = Uri.parse("tel:"+ number); Intent intent = new

[android-developers] Re: access to internal telephony

2009-02-23 Thread legerb
sorry for the delay. for any destination number (say 212333,4;444), it would be: destNum = destNum.replaceAll(#, ENCODE_POUND); if (destNum.endsWith(ENCODE_POUND)) //calls ending with # will fail { destNum= destNum.substring(0, destNum.length()-ENCODE_POUND.length ()); } Intent

[android-developers] Re: access to internal telephony

2009-02-09 Thread legerb
I had problems with the '#', but when encoded, it works fine. With other symbols i didn't have any problems. And i remember that when '#' was the last char (even encoded), it was always stripped. On Feb 9, 9:25 am, shimo...@gmail.com shimo...@gmail.com wrote: Hi, Using a DEV phone, seems I

[android-developers] Re: access to internal telephony

2009-02-09 Thread shimo...@gmail.com
Hi, Can you share the code snippet you use to call, for example - 212333,4;444 ? (the comma should yield a timed pause, the ';' - a hard pause - waiting for the user to acknowledge before dialing) Thanks ! On Feb 9, 1:19 pm, legerb drim...@gmail.com wrote: I had problems with the

[android-developers] Re: access to internal telephony

2009-02-08 Thread shimo...@gmail.com
Hi, Using a DEV phone, seems I can not make calls to numbers containing extra digits (i.e. pauses - either 'hard' or 'timed'). They are stripped. If I start the call from the built-in contacts app using the ACTION_VIEW intent and then tapping a phone field with, say - *151,#,1 it is dialed

[android-developers] Re: access to internal telephony

2009-02-07 Thread Dianne Hackborn
Not any time soon. Most of the classes there will only work when running code in the phone process, and making them work in other process would be significant work. Also on the G1 I don't believe that anything in the application processor even has access the voice data stream, so it just