[android-developers] Re: ProgressDialog from within ContentProvider class!

2009-12-05 Thread Streets Of Boston
If you need to inform user of progress of your ContentProvider's actions, you shouldn't do it directly in your ContentProvicer, as the other posters in this thread have said as well. Instead, you could have your ContentProvider-process implement a Service as well that will call back into any Activ

[android-developers] Re: ProgressDialog from within ContentProvider class!

2009-12-05 Thread Dexter's Brain
Hi, You should not be doing this. You would probably want to handle everything related to UI from the Activity class itself. You start a background activity in a thread, and show the progress dialog. Then when the background thread exits, you dismis the progress dialog from the activity class its