How to change the color of dial . Pay attention not color primary variant , and how to change the color on of button of navigation , not navigation bar color .
from this picture
to that picture
sorry for bad english, I’m from Ukraine
How to change the color of dial . Pay attention not color primary variant , and how to change the color on of button of navigation , not navigation bar color .
from this picture
to that picture
sorry for bad english, I’m from Ukraine
2
Answers
the text has changed but the navigation buttons no i found a better solution via xml for text
<item name="android:windowLightStatusBar">true</item>
all that remains is to change the navigation buttons, not their background
but still thank you this answer helped a lot
decorView.setSystemUiVisibility(decorView.getSystemUiVisibility() | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
will change the color of the icons .. however if you want to support the dark theme you would needdecorView.setSystemUiVisibility(decorView.getSystemUiVisibility() & ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);