【发布时间】:2015-08-08 21:04:35
【问题描述】:
当 youtube 播放器片段嵌套在 ScrollView 中时,将设备旋转到横向时出现错误:
YouTubePlayer.ErrorReason.UNAUTHORIZED_OVERLAY
更有趣的是,当我删除 ScrollView 后问题就消失了!但我可以
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
/>
<fragment
android:name="com.google.android.youtube.player.YouTubePlayerFragment"
android:id="@+id/youtubeplayerfragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</ScrollView>
【问题讨论】:
-
scrollview 应该只有一个孩子
标签: android youtube youtube-api