gpt4 book ai didi

Android YouTubePlayer 在播放器顶部带有未经授权的覆盖

转载 作者:IT老高 更新时间:2023-10-28 23:40:53 27 4
gpt4 key购买 nike

我在 Fragment 中使用 YouTubePlayer(Android 版 YouTube api)我用 YouTube 播放器给 LinearLayout 充气,用这种方式:

fragmentManager = getActivity().getSupportFragmentManager();
fragmentTransaction = fragmentManager.beginTransaction();

player = new YouTubePlayerSupportFragment();
fragmentTransaction.add(R.id.youTubePlayerContainer, player);
fragmentTransaction.commit();

...youTubePlayerContainer 是膨胀的 LinearLayout

正确检测到播放器,开始播放,然后停止。日志显示如下:

YouTube video playback stopped due to unauthorized overlay on top of player. 
The YouTubePlayerView is obscured by android.widget.FrameLayout@4110d1f8.
YouTubePlayerView is completely covered, with the distance in px between each edge of the obscuring view and the YouTubePlayerView being: left: 484, top: 100, right: 100, bottom: 170..

这是我的 XML:(里面没有FrameLayout)

 <LinearLayout
android:id="@+id/curtain"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<LinearLayout
android:id="@+id/withApi"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<LinearLayout
android:id="@+id/youTubePlayerContainer"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_gravity="center"
android:layout_margin="30dp"
android:layout_weight="1"
android:orientation="vertical" >
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="3dp"
android:background="@color/trans_popUp"
android:padding="3dp" >

<TextView
android:id="@+id/textYouTubeVisor"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Title..."
android:textColor="@color/white" />
</LinearLayout>
</LinearLayout>

我尝试更改页边距但没有成功。我阅读了官方文档但没有成功表示导致问题的FrameLayout为:android.widget.FrameLayout@4110d1f8但是有了这样的引用并不能确定是哪个引用

对他做过这件事的人?

感谢您的帮助。

问候

最佳答案

我今天遇到了同样的问题,对我来说,日志中的错误是:

W/YouTubeAndroidPlayerAPI﹕ YouTube video playback stopped due to unauthorized overlay on top of player. The YouTubePlayerView is not contained inside its ancestor com.google.android.youtube.player.YouTubePlayerView{42686bc8 V.E..... ........ 0,0-1200,675 #7f0a00a0 app:id/video_player}. The distances between the ancestor's edges and that of the YouTubePlayerView is: left: -10, top: -10, right: -10, bottom: -10 (these should all be positive).

我通过删除布局中 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" />

关于Android YouTubePlayer 在播放器顶部带有未经授权的覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16067783/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com