On Fri, Oct 15, 2010 at 6:40 AM, David Bidorff <[email protected]> wrote: > So I'm trying to find a way to create a UI when the onReceive() > function of my BroadcastReceiver is fired. It seems that I can show an > Activity thanks to Context.startActivity(), however, I need to wait > for the user to interact with that Activity (by giving its > confirmation) before my BroadcastReceiver can continue its processing > and I can't seem to find a way to do it...
That's not possible. For starters, the activity will not even appear until onReceive() has completed. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in London: http://skillsmatter.com/go/os-mobile-server -- 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

