Hello,
I have in my activity a ProgressDialog that runs while the application grab some data on an external server in an other thread.
Once I’m back to my main activity, I want to dismiss the ProgressDialog and then, show an AlertDialog.
The problem is that my AlertDialog doesn’t show.
I use the onCreateDialog() method to manage my dialogs.
I tried to replace the AlertDialog with a Toast but it doesn’t show too.
Have you some ideas?
Thank you.