I want to set this url photo "http://file.koreafilm.or.kr/thm/02/00/01/66/tn_DPF002814.JPG" in my app with glide library.
Glide.with(context).
load(movieImageArray.get(position)).error(R.drawable.gray_profile)
.fallback(R.drawable.profile)
.into(holder.imageMovieResult);
I wanna set this url photo into image view from Recycler view adapter. Other url is working in this code but only this form of url is not working. (I get url form other API. I can't change url form) please help me!!!