[android-developers] Re: google voice native phone dialer control

2010-10-07 Thread Alejandro D. Garin
voice does with the native dialer? Thanks!! On Mon, Oct 4, 2010 at 8:55 AM, Alejandro D. Garin aga...@gmail.com wrote: Hi All, Does anyone know how google voice application is taking control of the default phone native dialer? Is it using the public android API? I saw how google voice

[android-developers] google voice native phone dialer control

2010-10-04 Thread Alejandro D. Garin
Hi All, Does anyone know how google voice application is taking control of the default phone native dialer? Is it using the public android API? I saw how google voice display a bubble at top and mask the dialed out number in the native dialer. We need to do something like this in our application

Re: [android-developers] Re: abort outgoing call

2010-01-08 Thread Alejandro D. Garin
Hi, What do you mean with not reinitiating the call ? On Fri, Jan 8, 2010 at 4:07 AM, Gulfam gulfa...@gmail.com wrote: Hi , I was aborting BroadCastReceiver using abortBroadcast(); method. Its working fine with 1.0 to 1.6 but on 2.0 or + its not working. I have checked the documentation

Re: [android-developers] Re: abort outgoing call

2010-01-08 Thread Alejandro D. Garin
, Gulfam gulfa...@gmail.com wrote: Hi Alejandro D. Garin, Reintiating call means when i setResultData(null); and after this i want to call at new number as Intent DialIntent = new Intent (Intent.ACTION_CALL,Uri.parse(3224005421));/**local number DialIntent.setFlags

Re: [android-developers] Re: abort outgoing call

2010-01-08 Thread Alejandro D. Garin
I wrote the Uri parse different: Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(tel: + NUMBER)); NUMBER is a constant with the new number to dial. On Fri, Jan 8, 2010 at 3:43 PM, Alejandro D. Garin aga...@gmail.com wrote: Hi Gulfam, I'm doing exactly

[android-developers] abort outgoing call

2010-01-07 Thread Alejandro D. Garin
Hi, Suppose I want to replace a short number dialed by the user (i.e. 1234) by a full mapped real number (4081234). So I should intercept the outgoing call, abort it, and dial the correct real number. Although I'm able to detect the outgoing call by a BroadcastReceiver class my problem is

[android-developers] Re: abort outgoing call

2010-01-07 Thread Alejandro D. Garin
just found the answer: use setResultData(null) on the BroadcastReceiver Thanks On Thu, Jan 7, 2010 at 4:13 PM, Alejandro D. Garin aga...@gmail.com wrote: Hi, Suppose I want to replace a short number dialed by the user (i.e. 1234) by a full mapped real number (4081234). So I should