gpt4 book ai didi

android - SimpleExoPlayerView 自定义以保持背景透明和控件始终可见

转载 作者:太空狗 更新时间:2023-10-29 16:26:46 27 4
gpt4 key购买 nike

我正在使用 ExoPlayer 播放音频歌曲,这是我的 SimpleExoPlayerView 的样子:

<com.google.android.exoplayer2.ui.SimpleExoPlayerView
android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

结果:

enter image description here

要求:

  1. 如何将 SimpleExoPlayerView 背景保持为透明,而不是黑色背景 [仍然如此,我得到](请参阅以上截图)

  2. 如何保持 SimpleExoPlayerView 始终可见(它仍然出现然后消失,直到我再次触摸)

最佳答案

您可以将 show_timeout 设置为 0 以避免控件被隐藏(也可能希望将 hide_on_touch 设置为 false)

<com.google.android.exoplayer2.ui.SimpleExoPlayerView
android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:show_timeout="0"
app:hide_on_touch="false"
app:controller_layout_id="@layout/exo_playback_control_view" />

您还可以定义自己的 controller_layout_id 布局,它应该为您提供对背景等所需的所有控制(可以使用默认设置作为起点)。

关于android - SimpleExoPlayerView 自定义以保持背景透明和控件始终可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48463793/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com