Created
August 6, 2025 13:56
-
-
Save yccheok/05e64afb087ec9956381cb6b71f94603 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| private void edgeToEdgeIfPossible(boolean windowLightStatusBar) { | |
| if (windowLightStatusBar) { | |
| EdgeToEdge.enable( | |
| this, | |
| SystemBarStyle.light( | |
| ContextCompat.getColor(this, android.R.color.transparent), | |
| ContextCompat.getColor(this, android.R.color.transparent) | |
| ) | |
| ); | |
| } else { | |
| EdgeToEdge.enable( | |
| this, | |
| SystemBarStyle.dark( | |
| ContextCompat.getColor(this, android.R.color.transparent) | |
| ) | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment