在我的应用程序中,我想单击特定按钮并跳转到 youtube 应用程序并显示 youtube 用户。例如http://www.youtube.com/user/punjabiradiousa。这怎么可能请建议一些技术?
问问题
13279 次
3 回答
8
像这样做:
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.youtube.com/user/punjabiradiousa")));
于 2013-08-21T08:08:46.570 回答
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);
于 2013-08-21T08:26:04.780 回答
0
它的工作
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("")));
于 2018-03-08T08:41:57.210 回答