YouTubePlayer有时会在某些设备上暂停1秒后暂停
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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).
我在警报警报片段上没有任何FrameLayout,但我在活动xml文件中有一个包含片段的FrameLayout,所以我用片段替换了FrameLayout,因此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中没有任何FrameLayout,我仍然会收到相同的错误消息。我的应用中有插页式广告,因此我取消了广告,但错误仍然存在。
因此我尝试将活动设置为纵向而不是横向,现在它大部分时间都在关联和华威,但几乎总是在1秒后停在平板电脑上。
我还注意到,当我在我的Activity中包含YouTubePlayerFragment时,或者当我扩展YouTubeBaseActivity时,每次启动活动时,它都会创建2个活动实例而不是1个,无论我添加到意图或启动的标志模式(我不知道它是否与问题有关)
我可以使用RTSP链接在WebView上播放YouTube,但为了提取RTSP链接,我需要使用此项目:https://github.com/HaarigerHarald/android-youtubeExtractor
开发人员告诉我他们正在通过后门提取RTSP网址,这可能会影响Yotube政策。
我希望YouTube播放器始终可以在所有设备上运行。有没有人有想法?
根据这个documentation,请注意,在播放视频时,View
的最小尺寸为200x110 dp。如果你让view
变小,视频会自动停止播放。此外,在播放视频时,不允许将视图与其他视图重叠。
其他参考可能会有所帮助:
- Pausing youtube video after 1-2 seconds 根据Google的指定,无法在播放器上方添加按钮作为叠加层,否则播放器将停止播放。 YouTubePlayer也不支持填充。 为了覆盖你对视频的看法,我建议你使用ExoPlayer,它不是android sdk的一部分,但它是由谷歌推荐并包含在android开发者文档中: http://google.github.io/ExoPlayer/
- Views overlayed above YouTubePlayerFragment or YouTubePlayerView in the layout hierarchy cause playback to pause immediately 我们不支持在任何YouTube播放器(包括YouTube Android播放器)上叠加。检测到叠加时,播放停止,日志包含有助于调试问题的信息。我们支持Action Bar叠加,看看这个演示以了解更多信息:https://developers.google.com/youtube/android/player/sample-applications#Overlay_ActionBar_Demo。
希望这可以帮助!
这些是此问题的可能问题。请检查logcat以找出您的问题
UNAUTHORIZED_OVERLAY - 与youtube视图重叠的其他视图
PLAYER_VIEW_TOO_SMALL - Youtube视图太小
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>
imageview位于拥有youtube播放器的framelayout之下。我将它移到了顶部(最后,固定布局是上面的例子)它开始工作。(我尝试设置Zindex它没有帮助)。
以上是关于YouTubePlayer有时会在某些设备上暂停1秒后暂停的主要内容,如果未能解决你的问题,请参考以下文章
Chromecast RemoteMediaClient 有时不适用于“播放”和“暂停”等某些操作