Another software way:
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); window.setStatusBarColor(getResources().getColor(R.color.DarkOrange)); window.setNavigationBarColor(getResources().getColor(R.color.red));
Next, to change the color of the status bar, add the following line:
window.setStatusBarColor(getResources().getColor(R.color.green));
source share