I an trying to update status bar dynamically as below but getting warning that flag FLAG_TRANSLUCENT_STATUS is depricated now, how i can fix this?
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
// clear FLAG_TRANSLUCENT_STATUS flag:
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
// add FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS flag to the window
getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
// finally change the color
getWindow().setStatusBarColor(ContextCompat.getColor(this, color));
}
3
Answers
I spent too much hours to get the proper answer, because i have an error with status bar color as well. I will put the answer here if someone has the same problem.
You need to set the status bar color in transparent as you do in the code using the last build version as "if" statement, thats for sure.
But, also, you need to set this layout attribute in the root view as well.
Hope this will help you resolving the status bar error in Android 30.