Android progress dialog for Listview
问题 I have an activity with a listview. When I call this activity the activity takes about 3-5 seconds to appear and display the listview. It looks as if the button has not been pressed to load the activity, i would like to display a progressdialog while this loads but can't figure it out. ProgressDialog progress; progress = ProgressDialog.show(this, "Loading maps!", "Please wait...", true); // sort out track array getTracks(); progress.dismiss(); I did the above on the oncreate() of the activity