0

https://developers.google.com/youtube/android/player/reference/com/google/android/youtube/player/YouTubeStandalonePlayerから YouTubeStandalonePlayer を使用しようとしています

このコードを内部に使用するとonCreate()

Intent intent = YouTubeStandalonePlayer.createVideoIntent(this, DeveloperKey.DEVELOPER_KEY, VIDEO_ID);
startActivity(intent);

しかし、アプリケーションはエラーで失敗します。

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.youtubestandalone/com.example.youtubestandalone.MainActivity}: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.google.android.youtube.api.StandalonePlayerActivity.START (has extras) }

これを修正する方法は?

4

2 に答える 2

1

プロジェクトにjarファイルが含まれているかどうかを確認してください。次の手順を実行したことを確認してください。

  1. プロジェクトを右クリック
  2. プロパティを選択
  3. Java ビルド パスの選択
  4. 注文とエクスポートタブに移動
  5. YouTubeAndroidPlayerApiにチェックを入れます

幸運を!

于 2014-02-04T13:40:39.190 に答える