I follow some tutorial on the internet to make status bar on api19 (kitkat) transparent, but i got something like this
(android:theme="@style/AppTheme.NoActionBar"
style)
and v-19\styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="AppTheme.Base">
<item name="android:windowTranslucentStatus">true</item>
</style>
</resources>
styles.xml
<style name="AppTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primary_dark</item>
<item name="colorAccent">@color/accent</item>
<item name="colorControlHighlight">@color/accent</item>
<item name="android:textColorSecondary">@color/primary</item>
<item name="android:popupMenuStyle">@style/AppTheme.PopupOverlay</item>
<item name="android:popupBackground">@color/light</item>
</style>
how i turn the white translucent become transparent or colored primary so it will be blended with actionbar..