1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-09-04 11:57:57 +00:00

VideoPlayerUi: suppress warnings

The `R.id` link from the comment cannot be resolved, so let’s not link
it for now.

We are using some exoplayer2 resources, let’s silence the warning.
This commit is contained in:
Profpatsch
2025-01-01 14:10:45 +01:00
parent 803fd52859
commit 7585cc2e73

View File

@@ -16,6 +16,7 @@ import static org.schabi.newpipe.player.helper.PlayerHelper.getTimeString;
import static org.schabi.newpipe.player.helper.PlayerHelper.nextResizeModeAndSaveToPrefs; import static org.schabi.newpipe.player.helper.PlayerHelper.nextResizeModeAndSaveToPrefs;
import static org.schabi.newpipe.player.helper.PlayerHelper.retrieveSeekDurationFromPreferences; import static org.schabi.newpipe.player.helper.PlayerHelper.retrieveSeekDurationFromPreferences;
import android.annotation.SuppressLint;
import android.content.Intent; import android.content.Intent;
import android.content.res.Resources; import android.content.res.Resources;
import android.graphics.Bitmap; import android.graphics.Bitmap;
@@ -761,7 +762,7 @@ public abstract class VideoPlayerUi extends PlayerUi implements SeekBar.OnSeekBa
} }
/** /**
* Update the play/pause button ({@link R.id.playPauseButton}) to reflect the action * Update the play/pause button (`R.id.playPauseButton`) to reflect the action
* that will be performed when the button is clicked.. * that will be performed when the button is clicked..
* @param action the action that is performed when the play/pause button is clicked * @param action the action that is performed when the play/pause button is clicked
*/ */
@@ -947,6 +948,8 @@ public abstract class VideoPlayerUi extends PlayerUi implements SeekBar.OnSeekBa
player.toggleShuffleModeEnabled(); player.toggleShuffleModeEnabled();
} }
// TODO: dont reference internal exoplayer2 resources
@SuppressLint("PrivateResource")
@Override @Override
public void onRepeatModeChanged(@RepeatMode final int repeatMode) { public void onRepeatModeChanged(@RepeatMode final int repeatMode) {
super.onRepeatModeChanged(repeatMode); super.onRepeatModeChanged(repeatMode);