Merge pull request #11448 from t895/nav-fix-api-26
Android: Fix navigation bar buttons appearing invisible on API 26
This commit is contained in:
commit
59b276ea87
|
@ -81,8 +81,12 @@ object ThemeHelper {
|
|||
|
||||
private fun setLightModeSystemBars(windowController: WindowInsetsControllerCompat) {
|
||||
windowController.isAppearanceLightStatusBars = true
|
||||
|
||||
// Fix for an API 26 specific bug where the navigation bar buttons would appear invisible
|
||||
if (Build.VERSION.SDK_INT != Build.VERSION_CODES.O) {
|
||||
windowController.isAppearanceLightNavigationBars = true
|
||||
}
|
||||
}
|
||||
|
||||
private fun setDarkModeSystemBars(windowController: WindowInsetsControllerCompat) {
|
||||
windowController.isAppearanceLightStatusBars = false
|
||||
|
|
Loading…
Reference in New Issue