0

我正在尝试在我的应用程序中使用 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);

问题是什么?

4

1 回答 1

0

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

<activity android:name="com.keyes.youtube.OpenYouTubePlayerActivity" />
于 2013-03-18T18:16:20.360 回答