Home > Net >  How do I change the value of <item name="android:windowLightNavigationBar">true</
How do I change the value of <item name="android:windowLightNavigationBar">true</

Time:08-10

I am trying to take control over android:windowLightNavigationBar programmatically. I also researched a lot, but could not find any way how to achieve that.

Any help highly appreciated.

CodePudding user response:

using;

decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR)

or dark

  • Related