使用Android Exoplayer,当您点击屏幕时,它会弹出搜索栏和一些我编码的自定义按钮,它们叠加在视频顶部。是否有一个属性可以设置菜单在屏幕上停留的时间?
答案 0 :(得分:0)
请检查xml中以下声明的标签。
<com.google.android.exoplayer2.ui.PlayerView
android:id="@+id/mPlayerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:controller_layout_id="@layout/exo_playback_control_view"
app:player_layout_id="@layout/exo_simple_player_view"
app:repeat_toggle_modes="none"
app:resize_mode="fixed_height"
app:show_timeout="5000"
app:surface_type="texture_view" />
如上播放器中所述,当以毫秒为单位给出show_timeout属性时,它将使控件在5秒钟后消失。选中this。
希望有帮助。编码愉快!