For my activity, i am setting a background color for the window as
window.decorView.setBackgroundResource(R.drawable.background_red)
Now i want the status and navigation to get a darker shade over this background. How can i get this. I tried setting the theme as
`<style name="Theme.OnArrival.AccessControl" parent="Theme.OnArrival.Light">
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
</style>`
but it doesnt seem to be working for navigation bar. Whats the right way to do it