Re: [android-developers] Re: Showing notification dialog over a incoming call

2011-11-02 Thread vinay kumar mj
Hi Sunil, I think you should use BroadcastReceiver API for this.Below link may helpfull. http://thinkandroid.wordpress.com/2010/02/02/custom-intents-and-broadcasting-with-receivers/ Hi Sunil, > > I think you should use BroadcastReceiver API for this. > > > 2011/11/2 Sunil Mishra > >> Thanks Fr

Re: [android-developers] Re: Showing notification dialog over a incoming call

2011-11-02 Thread vinay kumar mj
Hi Sunil, I think you should use BroadcastReceiver API for this. 2011/11/2 Sunil Mishra > Thanks Francisco for the explanation. Is there any possibility of > doing so? any work around? > > On Nov 2, 11:18 am, Francisco Dalla Rosa soares > wrote: > > when a call comes, your activity goes to bac

Re: [android-developers] Re: Showing notification dialog over a incoming call

2011-11-01 Thread Francisco Dalla Rosa soares
when a call comes, your activity goes to background and the phone app's activity becomes active. You're trying to show a dialog that is tied to a activity that's not running at the moment, thus the error. "Toast"s don't have these strong ties to the activity showing them. that's why it works. 2011