Answers for "status bar text color android css"

1

change status bar text color android programmatically

WindowInsetsControllerCompat(<window>, <view>).isAppearanceLightStatusBars = Boolean
Window window = Activity.getWindow();
View view = window.getDecorView();

// You need androidx.core for this
Posted by: Guest on June-07-2021
0

statusbar text color android

getWindow().setStatusBarColor(ContextCompat.getColor(BookReaderActivity.this, R.color.black));
View decorView = getWindow().getDecorView(); //set status background black 
decorView.setSystemUiVisibility(decorView.getSystemUiVisibility() & ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR); //set status text  light
Posted by: Guest on August-13-2020

Code answers related to "status bar text color android css"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language