我以前使用的是Glide 3.7.0。现在,我将Gradle中的行从
implementation 'com.github.bumptech.glide:glide:3.7.0'
到
implementation 'com.github.bumptech.glide:glide:4.9.0'
此后,我同步了Gradle并重建了我的项目,但是在进行以下构建时出现错误-
错误:找不到符号类GlideDrawableImageViewTarget
在我遇到错误的代码中,我像这样导入滑行-
import com.bumptech.glide.Glide;
import com.bumptech.glide.request.target.GlideDrawableImageViewTarget;
I implemented the Glide in the same file as below -
public void showCustomDialog(Activity context) {
dialogView = new Dialog(context);
dialogView.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialogView.setContentView(R.layout.layout_progress_dialog);
iv1 = (ImageView) dialogView.findViewById(R.id.iv1);
GlideDrawableImageViewTarget ivSmily = new GlideDrawableImageViewTarget(iv1);
Glide.with(context).load(R.raw.loader).into(ivSmily);
dialogView.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
dialogView.show();
}
我认为我需要在Glide V4中更新这些实现代码,但不知道我应该为Glide V4使用哪些代码。