我正在使用滑行加载图像。但是,在活动中加载图像时,Glide根本不会加载图像。但是也不会运行结果(不要运行失败或成功)。但是,当我在Fragment和recyclerview中使用它时,它会起作用。
我的代码:
Glide.with(CommentActivity.this).load(imageurl).dontAnimate().listener(new RequestListener<Drawable>() {
@Override
public boolean onLoadFailed(@Nullable GlideException e, Object model, Target<Drawable> target, boolean isFirstResource) {
imageurl="";
alertDialog.dismiss();
GenelUtil.ToastLong(getApplicationContext(),getString(R.string.failedtoloadimage));
return false;
}
@Override
public boolean onResourceReady(Drawable resource, Object model, Target<Drawable> target, DataSource dataSource, boolean isFirstResource) {
imageType="url";
imagelayout.setVisibility(View.VISIBLE);
alertDialog.dismiss();
return false;
}
}).into(commentimage);
该如何解决?