私のアプリでは、特定のボタンをクリックして YouTube アプリにジャンプし、YouTube ユーザーを表示したいと考えています。これはどのように可能ですか?いくつかのテクニックを提案してください。
質問する
13279 次
3 に答える
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 に答える