YouTube视频每2秒停止一次

时间:2016-12-13 09:12:31

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

我正在使用THIA LIBRARY TO GET ANIMATION LIKE FLIPBOARD APPLICATION

当我翻转一个视图时,我正在调用另一个视图,其中包含大量数据,包括 YouTube视频,我将所有这些信息扩展到RecyclerView。事情进展顺利但是当我正在播放YouTube视频时,我的视频会在我的LogCat中使用此消息每1-2秒后暂停一次。

YouTube video playback stopped due to unauthorized overlay on top of player. The YouTubePlayerView is obscured by android.opengl.GLSurfaceView{41ced230 V.E..... ......I. 0,0-720,1230}. YouTubePlayerView is completely covered, with the distance in px between each edge of the obscuring view and the YouTubePlayerView being: left: 20, top: 628, right: 63, bottom: 244..

1 个答案:

答案 0 :(得分:1)

您可以关注此相关SO thread。尝试删除布局中YouTubePlayerView中的填充。

<com.google.android.youtube.player.YouTubePlayerView
    android:id="@+id/video_player"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#000" />

Youtube播放器不允许任何视图覆盖它。只需使用setVisibility(View.GONE)覆盖所有视图。 [Source.]