Search code examples
androidandroid-glideandroid-youtube-api

YouTube thumbnail image not loading in android using Glide


I am using below code to display Youtube thumbnail:

String imageUrl = "http://img.youtube.com/vi/" + mVideoBeanList.get(position).getThumbnail() + "/default.jpg";
Glide.with(mActivity).load(imageUrl).into(holder.imageView);

Sample Path: http://img.youtube.com/vi/wES8gF9V44Q/default.jpg

Error: java.net.UnknownHostException(Unable to resolve host "img.youtube.com": No address associated with hostname


Solution

  • Please check your internet connection when you request a youtube thumbnail image.