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
Please check your internet connection when you request a youtube thumbnail image.