Answers for "how to change the color of the notification bar on android studio"

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 change the color of the notification bar on android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language