Setting light status bar in light reader themes for android O+
This commit is contained in:
parent
204a784895
commit
bd4a839b9e
1 changed files with 3 additions and 3 deletions
|
@ -174,9 +174,9 @@ class ReaderActivity : BaseRxActivity<ReaderPresenter>(),
|
|||
a.recycle()
|
||||
setNotchCutoutMode()
|
||||
|
||||
val systemUiFlag = when (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||
true -> View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR
|
||||
false -> View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR
|
||||
var systemUiFlag = View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||
systemUiFlag = systemUiFlag.or(View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR)
|
||||
}
|
||||
reader_layout.systemUiVisibility = when (lightStatusBar) {
|
||||
true -> reader_layout.systemUiVisibility.or(systemUiFlag)
|
||||
|
|
Reference in a new issue