how to make playlist of youtube links in my activity in android?

TareqElgafy

I have some YouTube links and I want to make a list like the playlist that exists in youtube such that a screen shot from the video automatically appear and when the user click on the link it opens the youtube app How can I do it ?

thanks in advance

PPartisan

For the YouTube thumbnails, you can use the techniques outlined in this answer to grab the url of several auto-generated thumbnails, and using an image library like Picasso it is straightforward to load the image into an ImageView:

private static final String EXAMPLE_YOUTUBE_VIDEO_ID = fMOqfsBzqLU;

public static String getYouTubeThumbnailUrl(String videoId) {
    return "http://img.youtube.com/vi/" + videoId + "/0.jpg";
}

//To use...

Picasso.with(context).load(getYouTubeThumbnailUrl(EXAMPLE_YOUTUBE_VIDEO_ID)).into(imageView);

Use a RecyclerView or ListView to display the images, and set an onClickListener() to the ImageView that links to the video on YouTube:

public static String getYouTubeVideoLink(String videoId) {
    return "https://www.youtube.com/watch?v=" + videoId;
}

//To launch the video in the defaul browser...

Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(getYouTubeVideoLink(EXAMPLE_YOUTUBE_VIDEO_ID)));
startActivity(i);

Edit: To open the video in the YouTube app, you can use try the examples in this post, or explore the YouTubePlayer API.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get correct JSON format of my playlist videos in YouTube in Android?

From Dev

How to paste Youtube Playlist into a ListView - Android?

From Dev

How to paste Youtube Playlist into a ListView - Android?

From Dev

Scraping YouTube playlist video links

From Dev

How can I download a youtube playlist with youtube-dl and make it a mp3-playlist?

From Dev

How to open youtube applications home activity from my android application?

From Dev

How can I make youtube-dl return the creator of a playlist?

From Dev

How to add multiple youtube playlist with video in my flutter app?

From Dev

extract private youtube playlist video links

From Dev

How to create a Youtube Playlist using Listview in Android Studio

From Dev

Youtube Playlist to Listview in Android Studio

From Dev

How to make playlist by javascript

From Dev

Make embedded YouTube Playlist start at random index

From Dev

How can I lock my screen and keep my youtube playlist going?

From Dev

How to make a FullScreen Activity on Android

From Dev

Extract individual links from a single youtube playlist link using python

From Dev

How Can I Get my playlist videos from Youtube with angular 2

From Dev

Get Youtube publish channel playlist videos in android

From Dev

How to make my links open a 'popup' window

From Dev

How to make a playlist of streaming URLs?

From Dev

how to build video playlist having youtube videos?

From Dev

How can I download a YouTube playlist?

From Dev

How to manage a YouTube account's playlist automatically

From Dev

how to make Links in web view clickable in android

From Dev

How to download a youtube playlist with numbered prefix via youtube-dl?

From Dev

How to download a youtube playlist with numbered prefix via youtube-dl?

From Dev

How to share my youtube-playlist with the end user, using You Tube data api version 3 objective c

From Dev

How to make the ads appear on an activity in android?

From Dev

How to make half screen for notification activity in android

Related Related

  1. 1

    How to get correct JSON format of my playlist videos in YouTube in Android?

  2. 2

    How to paste Youtube Playlist into a ListView - Android?

  3. 3

    How to paste Youtube Playlist into a ListView - Android?

  4. 4

    Scraping YouTube playlist video links

  5. 5

    How can I download a youtube playlist with youtube-dl and make it a mp3-playlist?

  6. 6

    How to open youtube applications home activity from my android application?

  7. 7

    How can I make youtube-dl return the creator of a playlist?

  8. 8

    How to add multiple youtube playlist with video in my flutter app?

  9. 9

    extract private youtube playlist video links

  10. 10

    How to create a Youtube Playlist using Listview in Android Studio

  11. 11

    Youtube Playlist to Listview in Android Studio

  12. 12

    How to make playlist by javascript

  13. 13

    Make embedded YouTube Playlist start at random index

  14. 14

    How can I lock my screen and keep my youtube playlist going?

  15. 15

    How to make a FullScreen Activity on Android

  16. 16

    Extract individual links from a single youtube playlist link using python

  17. 17

    How Can I Get my playlist videos from Youtube with angular 2

  18. 18

    Get Youtube publish channel playlist videos in android

  19. 19

    How to make my links open a 'popup' window

  20. 20

    How to make a playlist of streaming URLs?

  21. 21

    how to build video playlist having youtube videos?

  22. 22

    How can I download a YouTube playlist?

  23. 23

    How to manage a YouTube account's playlist automatically

  24. 24

    how to make Links in web view clickable in android

  25. 25

    How to download a youtube playlist with numbered prefix via youtube-dl?

  26. 26

    How to download a youtube playlist with numbered prefix via youtube-dl?

  27. 27

    How to share my youtube-playlist with the end user, using You Tube data api version 3 objective c

  28. 28

    How to make the ads appear on an activity in android?

  29. 29

    How to make half screen for notification activity in android

HotTag

Archive