在某些设备上,YouTubePlayer 有时会在 1 秒后暂停



我对YouTubePlayerView和YouTubePlayerFragment都有一个非常奇怪的问题。

我的应用程序是一个闹钟,我希望我的用户能够将YouTube视频设置为他们的闹钟。

下面是警报片段 xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/black">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="@dimen/standard_button_size"
android:gravity="center_vertical">
<TextView
android:id="@+id/tvSep"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginEnd="@dimen/activity_horizontal_margin"
android:layout_marginStart="@dimen/activity_horizontal_margin"
android:text="-"
android:textColor="@color/white_secondary_text"
android:textSize="@dimen/title_bold" />

<TextView
android:id="@+id/tvNotificationHourYoutube"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_toStartOf="@id/tvSep"
android:gravity="end"
android:text="7:00"
android:textColor="@color/white_secondary_text"
android:textSize="@dimen/title_bold" />
<TextView
android:id="@+id/tvAlarmLabelYoutube"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@id/tvSep"
android:gravity="center"
android:maxLines="1"
android:text="Wake up"
android:textColor="@color/white_secondary_text"
android:textSize="@dimen/title_bold" />
</RelativeLayout>
<fragment
android:name="com.google.android.youtube.player.YouTubePlayerFragment"
android:id="@+id/ypvAlert"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_marginBottom="@dimen/half_activity_vertical_margin"
android:layout_marginTop="@dimen/half_activity_vertical_margin"
android:minWidth="200dp"
android:minHeight="110dp"/>
<LinearLayout
android:id="@+id/llYoutubeButtons"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<android.support.v7.widget.AppCompatButton
android:id="@+id/btnStopAlarmBigYoutube"
android:layout_width="0dp"
android:layout_height="@dimen/standard_button_size"
android:layout_weight="1"
android:backgroundTint="@color/dark_primary_accent"
android:text="@string/stop_alarm"
android:textColor="?android:colorBackground"
android:textSize="@dimen/title_bold"
android:visibility="visible" />
<Button
android:id="@+id/btnSnoozeYoutube"
android:layout_width="0dp"
android:layout_height="@dimen/standard_button_size"
android:layout_weight="1"
android:text="@string/snooze"
android:textSize="@dimen/title_bold" />
</LinearLayout>

</LinearLayout>    

这是包含片段的活动的布局 xml 文件:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragmentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent" />

我在 2 部智能手机(Nexus 5 和华为(和一台平板电脑(华硕(上测试了警报。起初,我试图通过使用以下命令强制应用程序处于横向状态,如果它是 youtueb 警报:

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

问题是,在 nexus 5 上,视频几乎总是在 1 秒后停止。如果我从现在起将闹钟设置为 2 分钟,它将在 50% 的尝试中正常播放,如果我为明天早上设置闹钟,它总是在 1 秒后停止。在华为上,它几乎总是可以正常播放,而在平板电脑上,它是50/50。 这是我在视频停止时收到的消息:

YouTube video playback stopped due to unauthorized overlay on top of player. 
The YouTubePlayerView is not contained inside its ancestor 
android.widget.FrameLayout{89c240f V........ ......I. 0,0-0,0}. The 
distances between the ancestor's edges and that of the YouTubePlayerView is: 
left: 0, top: 0, right: 0, bottom: 0 (these should all be positive). 

我在警报警报片段上没有任何框架布局,但我在包含该片段的活动 xml 文件上有一个框架布局,所以我用片段替换了帧布局,所以 xml 文件如下所示:

<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/articles_list"
android:name="com.sux.alarmclock.AlarmNotificationFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout="@layout/fragment_alarm_alert_material_youtube" />

但是即使现在xml中没有任何框架布局,我仍然会收到相同的错误消息。我的应用中有插页式广告,所以我取消了广告,但错误仍然存在。

所以我尝试将活动设置为纵向而不是横向,现在它大部分时间都在 nexus 和华为上工作,但几乎总是在 1 秒后停止在平板电脑上。

我还注意到,当我在我的活动中包含 YouTubePlayerFragment 时,或者当我扩展 YouTubeBaseActivity 时,每次我启动活动时,它都会创建活动的 2 个实例而不是 1 个,无论我添加到意图或启动模式的标志如何(我不知道它是否与问题有关(

我可以使用 RTSP 链接在 WebView 上播放 YouTube,但为了提取 RTSP 链接,我需要使用这个项目: https://github.com/HaarigerHarald/android-youtubeExtractor

开发人员告诉我,他们正在通过后门提取RTSP URL,这可能违反了Yotube政策。

我希望YouTube播放器始终在所有设备上工作。有人有想法吗?

这些是此问题的可能原因。请检查日志猫以找出您的问题

UNAUTHORIZED_OVERLAY - 其他视图与YouTube视图重叠

PLAYER_VIEW_TOO_SMALL - 优酷视图太小

USER_DECLINED_RESTRICTED_CONTENT - 尝试播放受限内容

BLOCKED_FOR_APP - 某些视频被阻止应用。

当我遇到问题时,是因为UNAUTHORIZED_OVERLAY。

<RelativeLayout
android:id="@+id/parent"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/scImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"/>
<FrameLayout
andriod:id"@+id/youtube_parent
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>

图像视图位于具有YouTube播放器的框架布局下方。我把它移到了顶部(最终的固定布局是上面的示例(,它开始工作了。(我尝试设置 Zindex,但没有帮助(。

根据本文档,请注意,在播放视频时,View的最小大小为 200x110 dp。如果将view变小,视频将自动停止播放。此外,不允许在播放视频时将视图与其他视图叠加。

可能有帮助的其他参考:

  • 在 1-2 秒后暂停 youtube 视频

    无法

    按照Google指定的方式在播放器上方添加按钮作为叠加层,否则播放器将停止。

    YouTubePlayer也不支持填充。

    为了覆盖您在视频上的观点,我建议您使用ExoPlayer,它不是android sdk的一部分,但由Google推荐并包含在android开发人员文档中:

    http://google.github.io/ExoPlayer/

  • 在布局层次结构中叠加在 YouTubePlayerFragment 或 YouTubePlayerView 上方的视图会导致播放立即暂停

    不支持在我们的任何 YouTube 播放器(包括 YouTube Android 播放器(之上叠加。检测到覆盖时,播放将停止,日志包含有助于调试问题的信息。我们确实支持操作栏叠加,请查看此演示以了解更多信息:https://developers.google.com/youtube/android/player/sample-applications#Overlay_ActionBar_Demo。

希望这有帮助!

相关内容

  • 没有找到相关文章

最新更新