限制android SimpleExoPlayerView的高度来控制按钮

时间:2019-04-08 15:15:59

标签: android exoplayer2.x

如何将SimpleExoPlayerView的高度限制为仅控制按钮的高度而不是所有屏幕高度?

这是我的活动的布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>

    <com.google.android.exoplayer2.ui.SimpleExoPlayerView
        android:id="@+id/player_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:show_timeout="0"
        app:hide_on_touch="false"
        app:layout_constraintBottom_toBottomOf="parent"/>

</android.support.constraint.ConstraintLayout>

结果是这样的:

enter image description here

我想要这样的事情而不必在dp中手动设置SimpleExoPlayerView的高度:

enter image description here

2 个答案:

答案 0 :(得分:0)

我设法通过覆盖布局文件exo_simple_player_view.xml并只保留包含控件的部分来做我想做的事情。我已经在res / layout / exo_simple_player_view.xml中创建了布局文件(名称不能更改)。

exo_simple_player_view.xml

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
    <View android:id="@id/exo_controller_placeholder"
          android:layout_width="match_parent"
          android:layout_height="match_parent"/>
</merge>

答案 1 :(得分:0)

您可以获取 controller_view 高度并将其设置为 SimpleExoPlayerView 高度

playerView.exo_player_control.post {
            playerView.layoutParams.height = playerView.exo_player_control.height
            podcastFragmentBinding.playerView.requestLayout()
        }