29

我制作了一个从我们的服务器下载视频的应用程序。问题是:

当我取消下载时,我打电话:

myAsyncTask.cancel(true)

我注意到,这myAsyncTask不会在调用取消时停止......我ProgressDialog仍然会上升,就像从一个状态跳到另一个状态,向我显示每次我取消并重新开始时,AsyncTask通过单击下载按钮,一个新的AsyncTask开始......每个一次我点击下载..然后取消,然后再次下载单独AsyncTask开始。

为什么myAsynTask.cancle(true)不取消我的任务?我不想再把它放在后台了。如果单击取消,我只想将其完全关闭。

怎么做 ?

编辑:

感谢 gtumca-MAC,以及其他帮助我的人:

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

谢谢!!!

4

7 回答 7

59

AsyncTask 不会取消进程

myAsynTask.cancel(true) 

为此,您必须手动停止它。

例如,您doInBackground(..)在 while/for 循环中下载视频。

protected Long doInBackground(URL... urls) {

         for (int i = 0; i < count; i++) {
          // you need to break your loop on particular condition here

             if(isCancelled())
                  break;             
         }
         return totalSize;
     }
于 2012-06-04T13:59:56.403 回答
6

在你的课堂上声明

DownloadFileAsync downloadFile = new DownloadFileAsync();

然后在创建

DownloadFileAsync downloadFile = new DownloadFileAsync();
downloadFile.execute(url);

在你的背景中 ()

if (isCancelled())
    break;

@Override
protected void onCancelled(){

}

你可以通过以下方式杀死你的 AsyncTask

downloadFile.cancel(true);
于 2013-06-22T11:03:56.043 回答
3

当您启动一个单独的线程(AyncTask)时,它必须完成。您必须手动将取消语句添加到 AsyncTask 内的代码中。

可以通过调用 cancel(boolean) 随时取消任务。调用此方法将导致对 isCancelled() 的后续调用返回 true。调用此方法后,将在 doInBackground(Object[]) 返回后调用 onCancelled(Object),而不是 onPostExecute(Object)。为了确保尽快取消任务,如果可能(例如在循环内),您应该始终从 doInBackground(Object[]) 定期检查 isCancelled() 的返回值。

在文档中查看更多信息:http: //developer.android.com/reference/android/os/AsyncTask.html

于 2012-06-04T14:01:14.677 回答
0

我从过去 2 周开始一直在研究,但我不知道我们如何手动终止异步操作。一些开发人员使用 BREAK;在检查 for 循环时。但在我的场景中,我没有使用后台线程内的循环。但我必须知道它是如何将其作为一个愚蠢的逻辑工作的,但工作得非常好。

downloadFile.cancel(true);   //This code wont work in any case.

而不是取消并在后台线程上做很多工作以编程方式关闭wifi

WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
wifi.setWifiEnabled(false);

你想在哪里终止操作并在你需要的地方打开它。

WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
wifi.setWifiEnabled(true);

发生的情况是您的 try 块跳转到 IOException 杀死后台任务。

于 2015-01-12T07:46:57.163 回答
0

你最好使用 vogella asyncTask 库,它有很多特性,比如优先级和取消后台任务。这里有一个很棒的教程或使用它

于 2015-01-12T08:09:26.440 回答
0

您可以使用此代码。我正在下载 OTA 文件,如下所示:

static class FirmwareDownload extends AsyncTask<String, String, String> {

        public String TAG = "Super LOG";
        public String file;
        int lenghtOfFile;
        long total;

        @Override
        protected String doInBackground(String... f_url) {
            try {
                int count;
                Utilies.getInternet();

                URL url = new URL(f_url[0]);
                URLConnection connection = url.openConnection();
                connection.connect();
                lenghtOfFile = connection.getContentLength();
                mProgressBar.setMax(lenghtOfFile);
                InputStream input = new BufferedInputStream(url.openStream(), 8192);
                String fileName = f_url[0].substring(f_url[0].lastIndexOf("/"), f_url[0].length());
                File root = Environment.getExternalStorageDirectory();
                File dir = new File(root.getAbsolutePath() + fileName);

                Log.d(TAG, "trying to download in : " + dir);
                dir.getAbsolutePath();
                OutputStream output = new FileOutputStream(dir);
                byte data[] = new byte[1024];


                while ((count = input.read(data)) != -1) {

                    if (isCancelled())
                        break;

                    total += count;
                    mProgressBar.setProgress(Integer.parseInt("" + total));
                    Log.d("Downloading " + fileName + " : ", " " + (int) ((total * 100) / lenghtOfFile));
                    mPercentage.post(new Runnable() {
                        @Override
                        public void run() {
                            mPercentage.setText(total / (1024 * 1024) + " Mb / " + lenghtOfFile / (1024 * 1024) + " Mb");
                        }
                    });
                    output.write(data, 0, count);
                }

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

                //new InstallHelper().commandLine("mkdir data/data/ota");

                File fDest = new File("/data/data/ota/" + fileName);
                copyFile(dir, fDest);
                FirmwareInstaller fw = new FirmwareInstaller();
                fw.updateFirmware();

            } catch (Exception a) {
                System.out.println("Error trying donwloading firmware " + a);
                new InstallHelper().commandLine("rm -r  data/data/ota");
                dialog.dismiss();

            }
            return null;
        }

    }

因此,如果您想取消,只需使用以下代码:

 fDownload.cancel(true);
于 2015-09-11T14:34:43.920 回答
-1

我在一个活动中成功使用了 TextView onclick ...

        //inside the doInBackground() ...

        try {
        while (true) {
        System.out.println(new Date());

        //should be 1 * 1000 for second
        Thread.sleep(5 * 1000);
        if (isCancelled()) {
              return null;
        }
          }

        } catch (InterruptedException e) {

        }

在我的 onCreate() ...

     //set Activity
     final SplashActivity sPlashScreen = this;

     //init my Async Task
     final RetrieveFeedTask syncDo = new RetrieveFeedTask();
     syncDo.execute();

     //init skip link
     skip_text = (TextView) findViewById(R.id.skip_text);
     skip_text.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

            //cancel Async
            syncDo.cancel(true);

            //goto/start another activity
            Intent intent = new Intent();
            intent.setClass(sPlashScreen, MainActivity.class);
            startActivity(intent);
            finish();

        }
    });

和我的 xml TextView 元素...

   <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/skip_text"
        android:layout_marginTop="20dp"
        android:text="SKIP"
        android:textColor="@color/colorAccent"/>
于 2017-03-05T04:47:44.820 回答