android – 如何通过Intent播放YouTube视频?
作者:互联网
在我的应用程序中,我想点击一个特定的按钮,然后跳转到youtube应用程序并显示一个youtube用户.Eg http://www.youtube.com/user/punjabiradiousa.这怎么可能请提出一些技巧?
解决方法:
我用这个代码播放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);
标签:android,android-intent,youtube,android-youtube-api 来源: https://codeday.me/bug/20190723/1508836.html