Skip to content

Instantly share code, notes, and snippets.

@lisonge
Created May 8, 2025 01:55
Show Gist options
  • Save lisonge/9d796000a436f6b4a2f91f53d0685de3 to your computer and use it in GitHub Desktop.
Save lisonge/9d796000a436f6b4a2f91f53d0685de3 to your computer and use it in GitHub Desktop.
fun Activity.fixTransparentNavigationBar() {
// 修复在浅色主题下导航栏背景不透明的问题
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
window.isNavigationBarContrastEnforced = false
} else {
@Suppress("DEPRECATION")
window.navigationBarColor = Color.TRANSPARENT
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment