在我的情况下,在youtube播放器视图的上方设置textview。我收到的错误就像未经授权的覆盖。是否可以在youtube播放器视图中覆盖视图?
下面是我的代码
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/txt_attach"
android:layout_width="120dp"
android:layout_height="35dp"
android:gravity="center"
android:textSize="15dp"
android:textColor="#ffffff"
android:layout_marginTop="100dp"
android:visibility="visible"
android:text="Attach"/>
<fragment
android:id="@+id/player_fragment"
android:name="com.google.android.youtube.player.YouTubePlayerFragment"
android:layout_width="wrap_content"
android:layout_marginTop="50dp"
android:layout_height="wrap_content"
/>
</FrameLayout>
答案 0 :(得分:0)
尝试在framelayout中添加youtube播放器和文本视图。
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/text"
android:padding="@dimen/four_dp"
android:Text="text view" />
<YouTubePlayer
android:id="@+id/player"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
并且在您的活动中获取视图并致电text.bringToFront()
可能有错误,但我相信可以解决它们
希望能帮到你