使用android youtube播放器时出错

时间:2013-03-18 18:13:12

标签: android youtube

我正在尝试在我的应用程序中使用android youtube播放器: https://code.google.com/p/android-youtube-player/ 但是我在打电话的时候得到了一个错误:

java.lang.NoClassDefFoundError: com.keyes.youtube.OpenYouTubePlayerActivity

这是我写的:

String urlStr= "http://www.youtube.com/user/armadamusic ";
Uri uri = Uri.parse(urlStr);
Intent lVideoIntent = new Intent(null, Uri.parse("ytpl://"+uri), this, OpenYouTubePlayerActivity.class);
startActivity(lVideoIntent);

有什么问题?

1 个答案:

答案 0 :(得分:0)

对于OpenYouTubePlayerActivity,您需要将Activity添加到AndroidManifest.xml:

<activity android:name="com.keyes.youtube.OpenYouTubePlayerActivity" />