Android YouTube API:无法使用新的YouTube视频重新初始化YouTubePlayerFragment

时间:2014-07-01 04:48:56

标签: android youtube-api android-youtube-api youtube-data-api

我正在尝试在单击按钮时将不同的视频加载到YoutubePlayer片段中。我的按钮有一个onClick的testClick监听器。当我点击按钮时,我得到以下异常:" UsupportedExeception:没有视图可以添加到播放器"之上。当我从onclick方法初始化新视频时,也不会调用initialize方法。如何将新的YouTubeVideo加载到以前使用的YouTubePlayerFragment中,以及如何从我的onClick方法中调用初始化方法?

public class ExersizeListActivity extends Activity implements
    YouTubePlayer.OnInitializedListener {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_exersize_list);
}

public void testClick(View v) {
    //new YouTube Fragment to replace old one
    YouTubePlayerFragment youTubePlayerFragment=YouTubePlayerFragment.newInstance();
    youTubePlayerFragment.initialize(YoutubeAPIKey.API_KEY, this);

    FragmentManager fragManager=getFragmentManager();
    FragmentTransaction fragmentTransaction=fragManager.beginTransaction();


    fragmentTransaction.replace(R.id.youtube_fragment, youTubePlayerFragment);
    fragmentTransaction.commit();       
}

@Override
public void onInitializationFailure(Provider arg0,
        YouTubeInitializationResult arg1) {
    Log.e(null, "it bombed");

}

//not being called, and in current state would reinitialize with the same video
@Override
public void onInitializationSuccess(Provider arg0,
        YouTubePlayer youtubePlayer, boolean arg2) {
    youtubePlayer.cueVideo("YNKehLXpLRI");      
}

}

<RelativeLayout

    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <fragment
        android:id="@+id/youtube_fragment"
        android:name="com.google.android.youtube.player.YouTubePlayerFragment"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <Button
    android:id="@+id/randomizeButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Randomize!" 
    android:layout_below="@+id/youtube_fragment"
    android:onClick="testClick"/>
</RelativeLayout> 

1 个答案:

答案 0 :(得分:3)

不是使用<fragment>标记在xml布局文件中定义片段,而是定义一个FrameLayout容器,在runtime处以恐怖方式更改片段时是必需的:

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <FrameLayout
        android:id="@+id/youtube_fragment"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <Button
        android:id="@+id/randomizeButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Randomize!" 
        android:layout_below="@+id/youtube_fragment"
        android:onClick="testClick"/>
</RelativeLayout> 

您需要使用YouTubeVideoFragment添加onCreate()中的第一个FragmentTransaction,当用户点击该按钮时,testClick()中已有的代码应该可以使用