I writing an app where i want to display a list of YouTube videos. But I want the list to display the video title with some other info but also show a thumbnail of the video
Link to download Glide jar file http://grepcode.com/snapshot/repo1.maven.org/maven2/com.github.bumptech.glide/glide/3.6.0
String url = "https://img.youtube.com/vi/"+videoURL.split("\\=")[1]+"/0.jpg"; Glide.with(this).load(url).into(imageView);