我正在尝试在我的应用程序中使用 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);
问题是什么?