Progress Dialog not showing up in AsyncTask
问题 I have an Android application with an AsyncTask which is responsible for downloading a file from the internet. This AsyncTask is executed when clicking on an item in a Listview. So I have a custom adapter and in the OnItemClickListener of the Listview, I start the download and execute the AsyncTask. Now, my adapter contains the following code to start the AsyncTask named FileDownloader: @Override public void onClick(View view) { try { FileDownloader fd = new FileDownloader(activity); // some