2013-08-21 193 views
3

在我的應用程序中,我想單擊某個特定按鈕並跳轉到YouTube應用程序並顯示YouTube用戶。例如http://www.youtube.com/user/punjabiradiousa。這怎麼可能請建議一些技巧?如何通過Intent播放YouTube視頻?

+0

[使用ACTION \ _VIEW調用YouTube應用程序意圖大部分時間失敗]的可能重複(http://stackoverflow.com/questions/2978963/calling-youtube-app-using-action-view-intent-failing-most時間) 如果YouTube應用提供該功能,則只能查看用戶的個人資料。至於觀看視頻。您可以傳遞視頻網址意圖。請參閱鏈接 – 2013-08-21 08:07:56

+1

您可以參考http://stackoverflow.com/a/16514288/1131470 –

+0

我想在YouTube應用程序中打開它 – Navdroid

回答

1

此代碼,我用來播放YouTube視頻

Matcher matcher = Pattern.compile("http://www.youtube.com/embed/").matcher(mVideoId); 
matcher.find() 
Intent lVideoIntent = new Intent(
           null, 
           Uri.parse("ytv://" + mVideoId), 
           MainScreen.mContext, 
           com.kids.youtube.OpenYouTubePlayerActivity.class); 
           startActivity(lVideoIntent); 
0

其工作

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(""))); 
相關問題