HomeSort by relevance Sort by last modified time
    Searched refs:mRewindAction (Results 1 - 3 of 3) sorted by null

  /frameworks/support/leanback/src/main/java/androidx/leanback/media/
PlaybackBannerControlGlue.java 212 private PlaybackControlsRow.RewindAction mRewindAction;
289 if ((supportedActions & ACTION_REWIND) != 0 && mRewindAction == null) {
290 primaryActionsAdapter.add(mRewindAction =
292 } else if ((supportedActions & ACTION_REWIND) == 0 && mRewindAction != null) {
293 primaryActionsAdapter.remove(mRewindAction);
294 mRewindAction = null;
491 } else if (action == mRewindAction) {
568 if (mRewindAction != null) {
573 if (mRewindAction.getIndex() != index) {
574 mRewindAction.setIndex(index)
    [all...]
PlaybackControlGlue.java 190 private PlaybackControlsRow.RewindAction mRewindAction;
540 } else if (action == mRewindAction) {
639 if ((actions & ACTION_REWIND) != 0 && mRewindAction == null) {
640 mRewindAction = new PlaybackControlsRow.RewindAction(getContext(),
642 primaryActionsAdapter.set(ACTION_REWIND, mRewindAction);
643 } else if ((actions & ACTION_REWIND) == 0 && mRewindAction != null) {
645 mRewindAction = null;
689 if (mRewindAction != null) {
694 if (mRewindAction.getIndex() != index) {
695 mRewindAction.setIndex(index)
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
PlaybackOverlayFragment.java 99 private RewindAction mRewindAction;
208 } else if (action.getId() == mRewindAction.getId()) {
266 mRewindAction = new PlaybackControlsRow.RewindAction(sContext);

Completed in 131 milliseconds