Home
last modified time | relevance | path

Searched refs:shuffleButton (Results 1 – 1 of 1) sorted by relevance

/external/exoplayer/tree/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DPlayerControlView.java271 @Nullable private final ImageView shuffleButton; field in PlayerControlView
440 shuffleButton = findViewById(R.id.exo_shuffle); in PlayerControlView()
441 if (shuffleButton != null) { in PlayerControlView()
442 shuffleButton.setOnClickListener(componentListener); in PlayerControlView()
883 if (!isVisible() || !isAttachedToWindow || shuffleButton == null) { in updateShuffleButton()
889 shuffleButton.setVisibility(GONE); in updateShuffleButton()
891 setButtonEnabled(false, shuffleButton); in updateShuffleButton()
892 shuffleButton.setImageDrawable(shuffleOffButtonDrawable); in updateShuffleButton()
893 shuffleButton.setContentDescription(shuffleOffContentDescription); in updateShuffleButton()
895 setButtonEnabled(true, shuffleButton); in updateShuffleButton()
[all …]