Answers for "how to set the color on items on the windows status bar android kotlin"

1

status bar color android kotlin

Window window = activity.getWindow();

// clear FLAG_TRANSLUCENT_STATUS flag:
window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

// add FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS flag to the window
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);

// finally change the color
window.setStatusBarColor(ContextCompat.getColor(activity,R.color.my_statusbar_color));
Posted by: Guest on July-14-2020

Code answers related to "how to set the color on items on the windows status bar android kotlin"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language