您好我是Android的新手:
我在GridView中显示图像大拇指。为了获得更好的性能,我将异步加载它。
我的AsyncTask如下:
class BitmapWorkerTask extends AsyncTask<Integer, Void, Bitmap> {
private final WeakReference<ImageView> imageViewReference;
private int data = 0;
private String image_path;
public BitmapWorkerTask(ImageView imageView) {
imageViewReference = new WeakReference<ImageView>(imageView);
}
@Override
protected Bitmap doInBackground(Integer... params) {
data = params[0];
Bitmap picture = BitmapFactory.decodeFile(image_path);
int width = picture.getWidth();
int height = picture.getHeight();
float aspectRatio = (float) width / (float) height;
int newWidth = 98;
int newHeight = (int) (98 / aspectRatio);
return picture = Bitmap.createScaledBitmap(picture, newWidth,
newHeight, true);
}
@Override
protected void onPostExecute(Bitmap bitmap) {
if (imageViewReference != null && bitmap != null) {
final ImageView imageView = imageViewReference.get();
if (imageView != null) {
imageView.setImageBitmap(bitmap);
}
}
}
public void onDismiss(DialogInterface dialog) {
this.cancel(true);
}
}
和致电表格:
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater layoutInflater = (LayoutInflater) ctx
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
ListRowHolder listRowHolder;
if (convertView == null) {
convertView = layoutInflater.inflate(R.layout.ll_sponsor_list_item,
parent, false);
listRowHolder = new ListRowHolder();
listRowHolder.imgSponsor = (ImageView) convertView
.findViewById(R.id.imggrid_item_image);
convertView.setTag(listRowHolder);
} else {
listRowHolder = (ListRowHolder) convertView.getTag();
}
try {
BitmapWorkerTask task = new BitmapWorkerTask(
listRowHolder.imgSponsor);
task.image_path = ImageName.get(position);
task.execute(1);
} catch (Exception e) {
Toast.makeText(ctx, e + "", Toast.LENGTH_SHORT).show();
}
return convertView;
}
这里的问题是即使我点击后退按钮,任务也在后台运行。
答案 0 :(得分:15)
使用cancel()
停止AsyncTask
:
task.cancel(true);
documentation of AsyncTask在“取消任务”部分中提供了一些其他详细信息:
可以随时通过调用cancel(boolean)取消任务。调用 此方法将导致后续调用isCancelled()返回true。 调用此方法后,onCancelled(Object),而不是 onPostExecute(Object)返回后将调用doInBackground(Object[])。为了确保尽快取消任务,您应该始终从isCancelled()定期检查doInBackground(Object[])的返回值,如果可能的话(例如在循环内)。
答案 1 :(得分:5)
首先,您需要保留对每个执行的asynctask的引用。当活动暂停时,您应该遍历对asynctask的引用并使用cancel()取消它们。您还应该在每个asynctasks上调用get()。这将确保UI线程在更改活动之前等待asynctask完成。
如果你想让asynctask的线程被中断,或者使用cancel(false),请使用cancel(true),并且在doInBackground()方法中的点处,你应该检查isCancelled()并返回。
为了安全起见,你必须非常小心使用asynctasks。检查this article安全处理它们。
答案 2 :(得分:0)
制作这样的东西
private class myAsyncTask extends AsyncTask<Void, String, Void> {
private boolean isTaskCancelled = false;
public void cancelTask(){
isTaskCancelled = true;
}
private boolean isTaskCancelled(){
return isTaskCancelled;
}
protected Void doInBackground( Void... ignoredParams ) {
//Do some stuff
if (isTaskCancelled()){
return;
}
}
protected void onPostExecute( Void array )
{
//Do something
}
protected void onProgressUpdate(String... values)
{
//Do something
}
}
当您按下Activity时,将asynctask置于取消模式,因此它将停止执行。
检查您在asynctask中所做的每一步中取消的方法,并在下一行停止