当 YouTubePlayer 播放播放列表时发生播放器错误时,调用 next() 无效。我相信这是因为 YouTubePlayer 中的错误是不可恢复的。解决方案是使用下一个播放列表索引重新加载播放列表。
因此,要跟踪当前的播放列表索引,
@Override // YouTubePlayer.PlaylistEventListener
public void onPrevious()
{
mPlaylistIndex--;
}
@Override // YouTubePlayer.PlaylistEventListener
public void onNext()
{
mPlaylistIndex++;
}
然后,在 onError() 中,
@Override // YouTubePlayer.PlayerStateChangeListener
public void onError(YouTubePlayer.ErrorReason errorReason)
{
Log.d(TAG, "YouTubePlayer error: " + errorReason);
// Check if the mContentId is of kind video or playlist,
// if video, there is nothing you can do, end playback.
// Check if the mPlaylistIndex is the last video in playlist,
// if so, there is nothing you can do, end playback.
mPlaylistIndex++;
mYouTubePlayer.loadPlaylist(mContentId, mPlaylistIndex, 0);
}