How to display thumbnail of YouTube Videos in Android

前端 未结 5 2181
野的像风
野的像风 2020-12-07 23:42

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

5条回答
  •  失恋的感觉
    2020-12-07 23:57

    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);
    

提交回复
热议问题