Re: [android-developers] Broadcast receivers

2012-07-23 Thread TreKing
On Sat, Jul 21, 2012 at 12:17 AM, Anil Kumar wrote: > How to get the caller info while phone starts ringing ? and that number > should be saved on my activity. Try something like this: http://lmgtfy.com/?q=android+receive+call+broadcast --

[android-developers] Broadcast receivers

2012-07-22 Thread Anil Kumar
How to get the caller info while phone starts ringing ? and that number should be saved on my activity. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

Re: [android-developers] Broadcast Receivers: Can they execute simultaneously or do they always execute consecutively?

2011-08-07 Thread Mark Murphy
On Sun, Aug 7, 2011 at 7:03 AM, Ali Chousein wrote: > I have a little confusion with broadcast receivers. I have a broadcast > receiver which is triggered upon TIME_SET and TIMEZONE_CHANGED actions > (the code is given below). What I was wondering is, can > OnDateTimeChanged (see the code below) b

[android-developers] Broadcast Receivers: Can they execute simultaneously or do they always execute consecutively?

2011-08-07 Thread Ali Chousein
Hi, I have a little confusion with broadcast receivers. I have a broadcast receiver which is triggered upon TIME_SET and TIMEZONE_CHANGED actions (the code is given below). What I was wondering is, can OnDateTimeChanged (see the code below) be triggered simultaneously (and its execution overlaps)

Re: [android-developers] Broadcast Receivers

2010-04-21 Thread Mark Murphy
pperotti wrote: > Hi Everyone, > > Can anyone give a hint if you know why there are some ACTIONS that do > not trigger their associated receivers when they are registered in the > manifest while they are received when they are register through > registerReceiver() ? Usually, it's for performance

[android-developers] Broadcast Receivers

2010-04-21 Thread pperotti
Hi Everyone, Can anyone give a hint if you know why there are some ACTIONS that do not trigger their associated receivers when they are registered in the manifest while they are received when they are register through registerReceiver() ? For instance, when I declare: if th

[android-developers] Broadcast Receivers help

2009-09-11 Thread Jason Proctor
well you could Thread.currentThread().sleep(period) #hack :-) >So, your saying use something like a wait(); statement? >Since I really don't do much before running the activity, all is done >in services before hand > > >On Sep 11, 2:49 pm, Jason Proctor >wrote: >> "officially", you can't

[android-developers] Broadcast Receivers help

2009-09-11 Thread ro...@rogerlemmon.com
My broadcast receiver for Call_State_Changed works fine and I successfully start a different activity than the standard CallLog after a call, but every once in a while, the original Activity gets displayed after mine, in effect not showing mine! This is annoying. Is there a call that I can make to