Dan wrote: > I have a context menu option that, when clicked, will load some > information from the web and insert it into a database. So this is a > lengthy process and I would like to display a progressdialog over the > top of the context menu when this option is selected. I've got the > progressdialog running now, but it won't show up. It's almost like > the context menu is covering it. So is there a way that I could get > the progressdialog to show up on top of the context menu and be > visible to the user. Thanks for any help.
Are you doing the "lengthy process" via an AsyncTask? If not, do that, and your context menu should go away and your ProgressDialog should show up. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Training...At Your Office: http://commonsware.com/training -- 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

