我正在使用 AsyncTask 类来处理来自服务器的图像以在 ImageView 中显示它
我的代码中有一个 Next 按钮来使用以下代码调用下一个图像:
private class LoadImage extends AsyncTask<Void, Void, Void> {
@Override
protected void onPostExecute(Void result) {
if (imgque != null) {
imgSelectedQue.setImageDrawable(imgque);
if (getActivity() != null) {
adjustResourceEnvelope();
}
}
}
@Override
protected void onPreExecute() {
imgque = null;
imgSelectedQue.setImageDrawable(null);
imgSelectedQue.requestLayout();
}
@SuppressWarnings("deprecation")
@Override
protected Void doInBackground(Void... params) {
InputStream is;
try {
is = (InputStream) new URL(Constants.PLAYER_SERVICE_BASE_URL + "/playerservice"
+ imageurl).getContent();
imgque = Drawable.createFromStream(is, null);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
imgque = null;
e.printStackTrace();
}
return null;
}
}
现在的问题是,如果我重复单击下一个按钮,那么它会多次调用 AsyncTask,并且 ImageView 会显示所有图像,例如“幻灯片放映”,因为所有 url 图像都在队列中。
有没有办法只显示最后一个 AsyncTask 调用图像?