I want to make the status bar like in the image below.
I tried a few things but none of them worked. Can some one point me to the right direction.
I want to make the status bar like in the image below.
I tried a few things but none of them worked. Can some one point me to the right direction.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.setStatusBarColor(getResources().getColor(R.color.colorPrimary));
}
super.onCreate(savedInstanceState);
and add this line to theme
<item name="android:windowLightStatusBar" tools:targetApi="23">true</item>