带有通知的AsyncTask

时间:2013-05-03 09:27:20

标签: android android-asynctask android-notifications

我尝试创建一个AsyncTask,下载Zip文件并在通知中显示下载进度。

我在打电话:

new MyAsyncTask.DownloadTask(context, position,list).execute(0);

参考这个:

import java.io.BufferedInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
import java.util.HashMap;

import android.annotation.SuppressLint;
import android.content.Context;
import android.os.AsyncTask;
import android.os.Environment;
import android.util.Log;
import android.widget.Button;

public class DownloadTask extends AsyncTask<Integer, Integer, Void> {
    private NotificationHelper mNotificationHelper;

    public int position;
    public ArrayList<HashMap<String, String>> list;

    public DownloadTask(Context context,int position, ArrayList<HashMap<String, String>> list) {
        mNotificationHelper = new NotificationHelper(context);
        this.position = position;
        this.list = list;
    }

    protected void onPreExecute() {
        mNotificationHelper.createNotification();
    }

    @SuppressLint("NewApi")
    @Override
    protected Void doInBackground(Integer... integers) {

            int count;
            try {
                URL url = new URL("http://myurl/test.zip");
                URLConnection conection = url.openConnection();
                conection.connect();
                int lenghtOfFile = conection.getContentLength();
                Log.d("Size: ", Integer.toString(lenghtOfFile));

                InputStream input = new bufferedInputStream(url.openStream(),8192);

                OutputStream output = new FileOutputStream(Environment.getExternalStorageDirectory().getPath()+ "/"+ list.get(position).get("Name") + ".zip");

                byte data[] = new byte[1024];

                long total = 0;

                while ((count = input.read(data)) != -1) {
                    total += count;
                    publishProgress((int) ((total * 100) / lenghtOfFile));
                    output.write(data, 0, count);
                }

                output.flush();
                output.close();
                input.close();

            } catch (Exception e) {
                Log.e("Error: ", e.getMessage());
            }

        return null;
    }

    @Override
    protected void onProgressUpdate(Integer... progress) {
        mNotificationHelper.progressUpdate(progress[0]);
    }

    @Override
    protected void onPostExecute(Void result) {
        mNotificationHelper.completed();
    }
}

它似乎工作得很好,但是当我点击我的按钮运行AsyncTask时,所有系统都在减速,在下载完成之前不可能再使用平板电脑了。 (拉链为100mo时不是很有用)。

另外,我希望能够取消下载,但是当我尝试从我的主要活动中执行此操作时(使用类似这样的内容:MyAsynctask.cancel(true);)应用程序崩溃。所以我想知道是否有正确的方法(可能来自通知,以提供最佳的用户体验)。

编辑:

由于buptcoder的更新时间不那么重要,因此延迟问题得以解决:

while ((count = input.read(data)) != -1) {
    total += count;
    if ((count % 10) == 0) {
        publishProgress((int) ((total * 100) / ;lenghtOfFile));
    }
    output.write(data, 0, count);
}

我仍在寻找取消通知的方法。

2 个答案:

答案 0 :(得分:1)

您过快更新通知。您必须降低更新的频率。

答案 1 :(得分:0)

new MyAsyncTask.DownloadTask(context, position,list).execute(0);

您没有该类的实例,因此您无法取消它。

MyAsyncTask myTask = new MyAsyncTask.DownloadTask(context, position,list);
myTask.execute(0);
myTask.cancel(true);