2015-11-02 103 views
1

我知道,我可以開始與URL的意圖,但我想啓動該視頻的縮略圖。
就像這裏:
Thumbnails如何在android中顯示Youtube視頻?

我怎樣才能做到這一點?

+0

@MarcinOrlowski嗯,我試圖把這個VideoView裏面,但沒有奏效。我也看到我可以使用Youtube API。但是如果有一種方法可以不使用它,我寧願。 – Cas

回答

2

您需要使用YouTube Android Player API。詳見說明書有:https://developers.google.com/youtube/android/player/

如果您想通過Intent打開YouTube頻道,你可以使用如下因素片斷:

public static void watchYoutubeVideo(Context context, String channelId) { 
    Intent intent = new Intent(Intent.ACTION_VIEW, 
      Uri.parse("http://www.youtube.com/channel/" + channelId)); 
    context.startActivity(intent); 
}