This repository has been archived by the owner on Oct 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(youtube/hide-player-overlay): make it toggleable in settings (#382)
- Loading branch information
1 parent
9e9399d
commit 1b4aa0f
Showing
2 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
app/src/main/java/app/revanced/integrations/patches/HidePlayerOverlayPatch.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package app.revanced.integrations.patches; | ||
|
||
import android.widget.ImageView; | ||
|
||
import app.revanced.integrations.settings.SettingsEnum; | ||
|
||
public class HidePlayerOverlayPatch { | ||
public static void hidePlayerOverlay(ImageView view) { | ||
if (!SettingsEnum.HIDE_PLAYER_OVERLAY.getBoolean()) return; | ||
view.setImageResource(android.R.color.transparent); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters