-2

Guys I want to have translucent status bar with black background navigation buttons. Just like Netflix App as shown in picture. I tried really hard to find any way but I failed to achieve this. Any Idea?

enter image description here

abhi
  • 961
  • 9
  • 13

1 Answers1

0

Add in styles.xml in Base Application style

Change status bar color : <item name="android:statusBarColor">@color/blackColor</item>

For Translucent status bar : <item name="android:windowTranslucentStatus">true</item>

For navigation bar color : <item name="android:navigationBarColor">@color/blackColor</item>

in layout file use : android:fitsSystemWindows="true" in root layout.

Sandeep Kumar
  • 168
  • 1
  • 9