Hello everyone,
I was working with navigation bar and found a way so that you could make the status as well as navigation bar transparent, your views could be shown bellow to the navigation bar, by default activity is shown above the navigation bar but it could be starched below the on screen navigation drawer .
For this functionality app theme need to be changed.
inherit your app theme from android:Theme.Material.NoActionBar.TranslucentDecor" example
<style name="AppTheme" parent="android:Theme.Material.NoActionBar.TranslucentDecor">
above style is for v21
<style name="AppTheme" parent="android:Theme.Holo.Light.NoActionBar.TranslucentDecor">
above style is for v-19
below v-19 this functionality can not be achieved.
Happy coding
0 Comment(s)