I made a custom layout for the ExoPlayer
‘s PlayerView
. I changed almost all UI elements but I can’t modify the View
with seekbar.
Here is the original code of this view:
<View android:id="@id/exo_progress_placeholder"
android:layout_width="match_parent"
android:layout_height="@dimen/exo_styled_progress_layout_height"
android:layout_gravity="bottom"
android:layout_marginBottom="@dimen/exo_styled_progress_margin_bottom"/>
In particular, I want to paint the seekbar completely black. I tried to change the View’s class to androidx.media3.ui.DefaultTimeBar
and use such parameters as app:scrubbler_color
, app:played_color
etc, but this doesn’t work.