【发布时间】:2016-08-29 09:40:39
【问题描述】:
下面是我的代码,我试图通过 onProgressUpdate 方法在 Asyntask 中显示我的进度,但它没有显示在警报对话框中。仅显示初始消息。
class DownloadFileFromURL extends AsyncTask<String, String, String> {
private AlertDialog.Builder alert;
private int progress = 0;
/**
* Before starting background thread Show Progress Bar Dialog
*/
@Override
protected void onPreExecute() {
super.onPreExecute();
alert = new AlertDialog.Builder(context);
alert.setTitle("Downloading..");
alert.setMessage("1");
alert.setCancelable(false);
alert.show();
}
/**
* Downloading file in background thread
*/
@Override
protected String doInBackground(String... f_url) {
int count;
try {
URL url = new URL(f_url[0]);
URLConnection conection = url.openConnection();
conection.connect();
// this will be useful so that you can show a tipical 0-100%
// progress bar
int lenghtOfFile = conection.getContentLength();
// download the file
InputStream input = new BufferedInputStream(url.openStream(),
8192);
// Output stream
OutputStream output = new FileOutputStream(file);
byte data[] = new byte[1024];
long total = 0;
while ((count = input.read(data)) != -1) {
total += count;
// publishing the progress....
// After this onProgressUpdate will be called
publishProgress("" + (int) ((total * 100) / lenghtOfFile));
// writing data to file
output.write(data, 0, count);
}
// flushing output
output.flush();
// closing streams
output.close();
input.close();
} catch (Exception e) {
Log.e("Error: ", e.getMessage());
}
return null;
}
/**
* Updating progress bar
*/
@Override
protected void onProgressUpdate(String... progress) {
Log.d("Myapp","progress :"+progress[0]);
alert.setMessage(""+progress[0]);
}
/**
* After completing background task Dismiss the progress dialog
**/
@Override
protected void onPostExecute(String file_url) {
// dismiss the dialog after the file was downloaded
}
}
由于我还在 onProgressUpdate 中编写了一个显示进度更新的日志,因此会打印日志,但 onProgressUpdate 中的 alert.setMessage 似乎没有将消息设置到我的警报对话框中。
【问题讨论】:
-
我认为最好使用 ProgressDialog 而不是 AlertDialog。
-
您不是在 alertdialog 而是在 builder 上使用 setmessage。以及如何用整数替换中间参数类型字符串?
-
@iroiroys 是的,我做错了,因为我认为它会那样工作,是的,我将中间参数类型更改为整数谢谢..!!
标签: android android-asynctask android-alertdialog async-onprogressupdate