I am new to android development. I want to develop a dialog with a progressbar in my application. When i click the search button the dialog should appear with the progressbar, showing that the progress is going on before switching to another activity. Please suggest me with sample code.
I am new to android development. I want to develop a dialog with a
Share
Use a
ProgressDialog. You should do the work on a newthread, though, and use ahandlerto call back to theactivitywhen finished. Here’s how I do it: