编程语言
首页 > 编程语言> > Java-无法在Glide 4.1.1中解析GlideApp

Java-无法在Glide 4.1.1中解析GlideApp

作者:互联网

这个问题已经在这里有了答案:            >            GlideApp not found using LibraryGlideModule (Glide 4)                                    4个
在经历了很多关于同一问题的论坛之后,我仍然无法解决GlideApp错误.它说无法解决.这是屏幕截图:

enter image description here

这是上面使用细节的java类

enter image description here

我的build.gradle文件已经包含:

  compile 'com.github.bumptech.glide:glide:4.1.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.1.1'

我和我都有下面的代码类:

import com.bumptech.glide.annotation.GlideModule;
import com.bumptech.glide.module.AppGlideModule;

@GlideModule
public final class CustomAppGlideModule extends AppGlideModule {
}

我正在使用它来请求:

当我使用Glide.with然后错误提示

enter image description here

但是它仍然不能解决问题.

解决方法:

试试看

  implementation 'com.github.bumptech.glide:glide:4.8.0'
  annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'

DEMO

@GlideModule
public class FlickrGlideModule extends AppGlideModule {

  @Override
  public void applyOptions(@NonNull Context context, @NonNull GlideBuilder builder) {
    super.applyOptions(context, builder);
    builder.setDefaultRequestOptions(new RequestOptions().format(DecodeFormat.PREFER_ARGB_8888));
  }

  @Override
  public void registerComponents(@NonNull Context context, @NonNull Glide glide,
      @NonNull Registry registry) {
    registry.append(Photo.class, InputStream.class, new FlickrModelLoader.Factory());
  }

  // Disable manifest parsing to avoid adding similar modules twice.
  @Override
  public boolean isManifestParsingEnabled() {
    return false;
  }
}

阅读AppGlideModule

费耶

您的loadImage方法将是

public static void loadImage(Context ctx,RequestOptions glideRequests, String url, ImageView imageView) {
        loadImage(ctx,glideRequests, url, imageView, DiskCacheStrategy.ALL);
    }

    public static void loadImage(Context ctx,RequestOptions glideRequests, String url, ImageView imageView, DiskCacheStrategy diskCacheStrategy) {

                 Glide.with(ctx)
                    .applyDefaultRequestOptions(requestOptions.placeholder(R.drawable.ic_stub).error(R.drawable.ic_stub))
                    .asBitmap()
                    .load(url).into(imageView);
    }

然后

ImageUtil.loadImage(context,options,obj.getPhotoUrl(),avatarImageView);

标签:android-glide,java,android
来源: https://codeday.me/bug/20191025/1924964.html