2016-12-13 6 views
1

はHI私はTHIA LIBRARY TO GET ANIMATION LIKE FLIPBOARD APPLICATIONYouTube動画の停止

を使用しています、私は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.. 

答えて

0

この件に関連すると思われるかもしれません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.]

関連する問題