In my android application, I need to change status bar as transparent with all icons. I do not want to change color or make it translucent.
I want status bar as shown in the image below :
<style name="AppTheme.FullScreen" parent="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowContentTransitions">true</item>
</style>