如何将视图放在youtube数据api的youtube上层

qzwqbdag  于 2021-07-05  发布在  Java
关注(0)|答案(0)|浏览(262)

我试图在youtube数据api的youtubeplayer上设置两个按钮,以便在我的youtube播放器中获得向前和向后10秒的功能

<androidx.constraintlayout.widget.ConstraintLayout 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"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".YoutubePlayer">

    <com.google.android.youtube.player.YouTubePlayerView
        android:id="@+id/youtube_player_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

    </com.google.android.youtube.player.YouTubePlayerView>

    <Button
        android:id="@+id/backwardButton"
        android:layout_width="150dp"
        android:layout_height="match_parent"
        android:alpha="0"
        android:onClick="backward"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/forwardButton"
        android:layout_width="150dp"
        android:layout_height="match_parent"
        android:alpha="0"
        android:onClick="forward"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

但每当youtube播放器加载时,它就会消除所有的孩子。
在youtube播放器之后,我试图让按钮添加到youtube播放器视图,但是失败了

youTubePlayerView.addView(backwardButton);
youTubePlayerView.addView(forwardButton);

但我的应用程序对这个很着迷
然后我试着让它在youtubeplayer加载后可见

backwardButton.setVisibility(View.VISIBLE);
forwardButton.setVisibility(View.VISIBLE);

但它还是会被压碎
我尝试了所有可用的解决方案堆栈溢出使用无铬播放器风格

youTubePlayer.setPlayerStyle(YouTubePlayer.PlayerStyle.CHROMELESS);

但还是失败了。
如何解决这个问题

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题