我有不同类型的物品的recyclerView,其中一个项目包括youtube视频,我使用的是YoutubePlayer。当我点击视频时它开始播放但是在一毫秒后停止播放。如果我按照预期更改为全屏模式。我收到这个日志
YouTube视频播放因播放器顶部未经授权的覆盖而停止。 facebook.widget.FrameLayout隐藏了YouTubePlayerView 它包含了包含youtubePlayer的recyclerView项目
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<fragment
android:id="@+id/youtubeFragment"
android:name="com.google.android.youtube.player.YouTubePlayerSupportFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.constraint.ConstraintLayout>
val youtubeFragment = MainActivity.getMainActivity(context)?.supportFragmentManager?.findFragmentById(R.id.youtubeFragment)
youtubeFragment.initialize(KEY,
object : YouTubePlayer.OnInitializedListener {
override fun onInitializationSuccess(provider: YouTubePlayer.Provider, youTubePlayer: YouTubePlayer, b: Boolean) {
youTubePlayer.loadVideo("5xVh-7ywKpE")
}
override fun onInitializationFailure(provider: YouTubePlayer.Provider,
youTubeInitializationResult: YouTubeInitializationResult) {
}
})
即使我在课堂上尝试过提交片段,但它没有区别
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<FrameLayout
android:id="@+id/youtubeFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.constraint.ConstraintLayout>
val fragmentManager = MainActivity.getMainActivity(viewBinding.root.context)?.supportFragmentManager
val fragmentTransaction = fragmentManager?.beginTransaction()
//add a fragment
val youtubeFragment = YouTubePlayerSupportFragment()
fragmentTransaction?.add(R.id.youtubeFragment, youtubeFragment)
fragmentTransaction?.commit()
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="toolbarViewModel"
type="se.ica.handla.ToolbarViewModel" />
</data>
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/windowBackground"
android:fitsSystemWindows="true"
tools:context="se.ica.handla.MainActivity">
<include
android:id="@+id/toolbarLayout"
layout="@layout/toolbar_top_level"
app:toolbarViewModel="@{toolbarViewModel}" />
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_anchor="@+id/toolbarLayout"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v7.widget.RecyclerView
android:id="@+id/news_list"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
</android.support.design.widget.CoordinatorLayout>
</layout>
答案 0 :(得分:0)
正如YouTube播放器API文档所述
由于视图覆盖了播放器,播放已停止。它是 不允许在播放器顶部覆盖视图 播放视频。
我认为您可以通过编程方式将xml
置于顶部以查看this以进行关联,但不推荐这种方式
另一种方法是处理您的fragment
,并将{{1}}保留在其他视图的顶部