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?
Asked
Active
Viewed 550 times
-2
-
Ok, what have you tried ? please post your code and your efforts – a_local_nobody Apr 23 '20 at 08:03
-
I tried this [link] (https://stackoverflow.com/a/42313556/8463520) – abhi Apr 23 '20 at 08:11
1 Answers
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