我正在开发一个 android 应用程序,我正在使用 asyncTask 下载文件并使用以下代码从方法 onProgressUpdate 更新 listView 上的进度条。
// In asynctask
@Override
protected String doInBackground(String... aurl) {
int count;
try {
fn = getFileName(aurl[0]); //working fine
URL url = new URL(aurl[0]);
URLConnection conexion = url.openConnection();
conexion.connect();
int lenghtOfFile = conexion.getContentLength();
InputStream input = new BufferedInputStream(url.openStream());
OutputStream output = new FileOutputStream("/mnt/sdcard/"+fn);
di.title = fn;
byte data[] = new byte[1024];
long total = 0;
while ((count = input.read(data)) != -1) {
if(isCancelled())return (null);
total += count;
publishProgress((int)((total*100)/lenghtOfFile)); //publishing very very frequently as download speed is 3MBPS
output.write(data, 0, count);
}
output.flush();
output.close();
input.close();
} catch (Exception e) {
Log.e("MYAPP", "exception", e);
}
return null;
}
protected void onProgressUpdate(Integer... progress) {
downloaditem.title = fn+" - "+progress[0]+"%";
di.per = progress[0];
adapter.notifyDataSetChanged();
}
...
我在 listview 上添加了一个按钮,也可以随时取消此下载。按钮点击监听如下:
// In adapter holder.button is pointing to correct cancel button in listview
holder.button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
DownloadItem.di.cancel(true); // This is also correctly canceling the task
}
});
如您所见,问题onProgressUpdate
是更新listView
非常频繁。所以我无法点击 UI 中的那个按钮来取消它,因为这个按钮也经常被刷新。
如果我使下载速度变慢并且进度更新频率变慢,那么这可以正常工作。
我该如何处理这个问题?