我使用 com.koushikdutta.ion.Ion 将图像下载到 ImageView:
void ChangeImage()
{
Ion.with(imageView).error(R.drawable.request_error).load(nextHttpUrl);
}
当开始加载下一个图像时,当前图像消失,而在下一个请求加载时,ImageView 不包含任何图像(或者,如果我添加 .placeholder() - 包含来自资源的图片)。
我如何作为 placheholder 当前图像离开?或者只有在下一个完整下载后才更改 ImageView 上的当前图像的任何其他方式?