我正在尝试在我的应用程序中使用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);
有什么问题?
答案 0 :(得分:0)
对于OpenYouTubePlayerActivity,您需要将Activity添加到AndroidManifest.xml:
<activity android:name="com.keyes.youtube.OpenYouTubePlayerActivity" />