相关疑难解决方法(0)

Android:取消异步任务

我使用异步任务上传图像并获得一些结果.

在上传图像时,我看到一个进度对话框,用onPreExecute()方法编写,如下所示:

    protected void onPreExecute() { 
         uploadingDialog = new ProgressDialog(MyActivity.this); 
         uploadingDialog.setMessage("uploading"); 
         uploadingDialog.setCancelable(true);
         uploadingDialog.show();
    }
Run Code Online (Sandbox Code Playgroud)

好的,当我按下后退按钮时,显然对话框因setCancelable(true)而消失.

但(显然)异步任务不会停止.

那么我该如何解决这个问题呢?当我按下后退按钮时,我想取消对话和异步任务.有任何想法吗?

编辑:找到解决方案.请看下面我的答案.

android asynchronous task back

57
推荐指数
5
解决办法
10万
查看次数

标签 统计

android ×1

asynchronous ×1

back ×1

task ×1