This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.
Issue
I am trying to take control over android:windowLightNavigationBar
programmatically. How can I do that?
Solution
using;
decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR)
or dark
Answered By – Arda Kazancı