我想在Android中的VideoView中播放视频。我已经搜索了互联网,我不确定,我已经迷失了这个话题。我想简单地播放任何YouTube视频,实际上什么都不能。我读过我需要特殊的库YoutubeAndroidPlayerApi。好的,我在Eclipse的项目中得到了它。然后我需要特殊的API KEY并为Android生成它。而现在我真的不知道如何让它发挥作用。任何人都可以帮我这样做。它应该只播放视频。没有登录和搜索其他东西(播放列表等)没有在我的应用程序中编码。
我的观点很简单:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TEKST TESTOWANIE"
android:textSize="20dp"
android:gravity="center" />
<VideoView
android:id="@+id/displayMovie"
android:layout_width="wrap_content"
android:layout_height="170dp"
android:layout_alignParentLeft="true"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
/>
</RelativeLayout>
这已经结束了,因为我不知道下一步是什么。请帮帮我。