在我的Android应用程序中,我有一个异步任务,下载图像并将其保存到外部存储,然后重复,直到下载所有图像。这可能需要一段时间,我会从调用它的活动中引用上下文,在每个下载的图像的异步中引用几次。
在此过程中,用户可能已经按下或结束了上下文。
如何检查我是否仍可以在异步任务中使用它?
这是我的异步任务代码:
package async;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.List;
import common.Common;
import common.FishCategory;
import http.Network;
import interfaces.ImageDownloader;
import android.app.Activity;
import android.content.Context;
import android.graphics.Bitmap;
import android.os.AsyncTask;
import android.os.Environment;
import android.provider.MediaStore;
public class Async_getAllFishPics extends AsyncTask<FishCategory, Void, FishCategory> {
String link;
ImageDownloader callerContext;
List<FishCategory> categoryList;
public Async_getAllFishPics(ImageDownloader callerContext, List<FishCategory> categoryList) {
this.callerContext = callerContext;
this.categoryList = categoryList;
for (FishCategory fish : categoryList) {
link = fish.getLink();
if (!link.equals("")) {
String imgpath = Common.getImagePath(link);
File file = new File(android.os.Environment.getExternalStorageDirectory(), imgpath);
if (!file.exists() && Network.isNetworkAvailable((Context)callerContext)) {
execute(fish);
break;
}
}
}
}
@Override
protected FishCategory doInBackground(FishCategory... fishes) {
Bitmap bitmap = Network.DownloadImage((Context) callerContext, link);
try {
saveImage(bitmap);
} catch (IOException e) {
e.printStackTrace();
}
return fishes[0];
}
@Override
protected void onPostExecute(FishCategory fish) {
try {
fish.setLink(link);
new Async_getAllFishPics(callerContext, categoryList);
} catch(Exception e) {
e.printStackTrace();
}
}
private void saveImage(Bitmap bitmap) throws IOException {
if (bitmap != null) {
String path = Environment.getExternalStorageDirectory().toString();
String imgpath = Common.getImagePath(link);
File file = new File(path, imgpath);
file.getParentFile().mkdirs();
String abs = file.getAbsolutePath();
OutputStream fOut = new FileOutputStream(file);
bitmap.compress(Bitmap.CompressFormat.PNG, 100, fOut);
fOut.flush();
fOut.close();
MediaStore.Images.Media.insertImage(((Activity)callerContext).getContentResolver(),abs,file.getName(),file.getName());
}
}
}
答案 0 :(得分:-2)
为什么不使用ApplicationContext?至少在关闭应用程序之前,您将确保上下文存在。
context.getApplicationContext()