StackOverFlow에 있는 내용을 참고해서 작성된 게시글 입니다..
Glide showing error: Failed to find GeneratedAppGlideModuleFinally, I found my answer here. What I have done : Step-1 I created an empty class named GlideApp import com.bumptech.glide.annotation.GlideModule; import com.bumptech.glide.module.AppGlideModule; @GlideModule public class GlideApp extends AppGlideModule { } Note: Don't forget to add annotation @GlideModule. Step-2 After that, I build/rebuild the project and then, replaced Glide with GlideApp.and now no need to use RequestOptions.https://stackoverflow.com/questions/49901629/glide-showing-error-failed-to-find-generatedappglidemodule
- Glide app 이라는 비어있는 클래스를 만듬
import com.bumptech.glide.annotation.GlideModule; import com.bumptech.glide.module.AppGlideModule; @GlideModule public class GlideApp extends AppGlideModule { }
2. 그후 프로젝트를 빌드/리빌드 해주고, 원래 Glide로 작성되어진 코드를 GlideApp으로 바꿔준다
public class CustomBindingAdapter { @BindingAdapter({"bind:image_url"}) public static void loadImage(ImageView imageView, String url) { // RequestOptions requestOptions = new RequestOptions(); // requestOptions=requestOptions.placeholder(R.drawable.boy_32); GlideApp.with(imageView.getContext()) .load(url) .placeholder(R.drawable.boy_32) .into(imageView); // Glide.with(imageView.getContext()) // .load(url) // .apply(requestOptions) // .into(imageView); } }
Glide showing error: Failed to find GeneratedAppGlideModule
I am trying to load an image using glide but somehow I can not load the image using glide. As it shows following error: Failed to find GeneratedAppGlideModule. You should include an
stackoverflow.com
'프로그래밍 > 회고' 카테고리의 다른 글
2023년, 나의 한 해를 돌아보며: 성장과 변화의 시간 (9) | 2024.01.01 |
---|
Uploaded by Notion2Tistory v1.1.0