我正在制作一个可下载大约231张图像的应用程序,其中150张图像显示在列表视图中,而其余图像则在单独活动的图像视图中显示为完整尺寸。第一次运行应用程序时,下载的图像大约需要4分钟或5分钟(我需要一个进度条来显示他们从总数中下载了多少图片)然后在下载图像后将它们保存到sd卡。然后,应用程序的连续启动将从SD卡加载图像,而不是重新下载它们。
答案 0 :(得分:1)
我知道这样做的最好方法是使用asynctask。因为它允许您执行一些后台工作并同时更新UI。(在您的情况下,进度条)。
这是我将如何去做的示例代码..
ProgressDialog mProgressDialog = new ProgressDialog(YourActivity.this);
mProgressDialog.setMessage("A message");
mProgressDialog.setIndeterminate(false);
mProgressDialog.setMax(100);
mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
DownloadFile downloadFile = new DownloadFile();
downloadFile.execute("the url to the file you want to download");
这是AsyncTask的外观示例。
private class DownloadFile extends AsyncTask<String, Integer, String>{
@Override
protected String doInBackground(String... url) {
int count;
try {
URL url = new URL(url[0]);
URLConnection conexion = url.openConnection();
conexion.connect();
// this will be useful so that you can show a tipical 0-100% progress bar
int lenghtOfFile = conexion.getContentLength();
// download the file
InputStream input = new BufferedInputStream(url.openStream());
OutputStream output = new FileOutputStream("/sdcard/somewhere/nameofthefile.ext");
byte data[] = new byte[1024];
long total = 0;
while ((count = input.read(data)) != -1) {
total += count;
// publishing the progress....
publishProgress((int)(total*100/lenghtOfFile));
output.write(data, 0, count);
}
output.flush();
output.close();
input.close();
} catch (Exception e) {}
return null;
}
上面的方法总是在后台运行,你不应该从那里更新任何UI。 另一方面,onProgressUpdate在UI线程上运行,因此您将更改进度条:
@Override
public void onProgressUpdate(String... args){
// here you will have to update the progressbar
// with something like
mProgressDialog.setProgress(args[0]);
}
}
如果要在完全下载文件后执行某些代码,您还需要覆盖onPostExecute方法。