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和华为)和一部平板电脑(Asus)上测试了警报。一开始,如果应用程序是青年警报,我试图通过以下方式强制该应用程序处于风景线上:
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);问题是,在nexus 5上,视频几乎总是在1秒后停止。如果从现在起我设置了一个闹钟2分钟,它将在50%的尝试中播放ok,如果我为明天早上设置一个警报,它总是在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。我的应用程序中有间隙广告,所以我取消了广告,但错误仍然发生。
所以我试着把这个活动设定为纵向,而不是景致。现在,它大部分时间都是针对nexus和华为的,但几乎总是在1秒后就停在平板电脑上。
我还注意到,当我在活动中包含YouTubePlayerFragment时,或者当我扩展YouTubeBaseActivity时,每次启动活动时,它都会创建活动的2个实例,而不是1,而不管我添加到意图或启动模式中的标志(我不知道它是否与问题有关)。
我可以使用RTSP链接在YouTube上播放WebView,但是为了提取RTSP链接,我需要使用这个项目:https://github.com/HaarigerHarald/android-youtubeExtractor
开发人员告诉我,他们是通过后门提取RTSP urls的,这可能是Yotube政策的一部分。
我希望YouTube播放器能一直在所有设备上工作。有人有主意吗?
发布于 2018-03-05 09:18:27
这些是造成这一问题的可能原因。请查看日志,找出您的问题所在。
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>图片显示在有youtube播放器的framelayout下面。我把它移到顶部(,最终的固定布局是上面的例子),它开始工作了(我试着设置Zindex,它没有帮助)。
发布于 2017-07-03 14:03:58
根据这个文档,需要注意的是,在播放视频时,View的最小大小是200x110 dp。如果您使view更小,视频将自动停止播放。此外,在播放视频时,不允许将视图与其他视图重叠。
可能有帮助的其他参考资料:
希望这能有所帮助!
https://stackoverflow.com/questions/44879826
复制相似问题