mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00

This also tweaks the logic in `Util.shouldShowPlayButton` to special-case the 'scrubbing' suppression reason. In most cases of playback suppression (e.g. transient loss of audio focus due to a phone call), the recommended UX is to show a 'play' button (i.e. the UI looks like the player is paused). This doesn't look right when scrubbing since although 'ongoing' playback is suppressed, the image on screen is constantly changing, so a 'pause' button is kept (i.e. the UI looks like the player is playing). PiperOrigin-RevId: 751385521
UI module
Provides UI components for media playback.
Getting the module
The easiest way to use the module is to add it as a gradle dependency:
implementation 'androidx.media3:media3-ui:1.X.X'
where 1.X.X
is the version, which must match the version of the other media
modules being used.
Alternatively, you can clone this GitHub project and depend on the module locally. Instructions for doing this can be found in the top level README.