Is there a standard “Loading, please wait” dialog I can use in Android development, when I invoke some AsyncTask (downloading some data from remote service for example)?
Is there a standard Loading, please wait dialog I can use in Android development,
Share
You mean something like an indeterminate ProgressDialog?
Edit: i.e.
then call
dialog.dismiss()when done.