Transparent navigation soft buttons

I am trying to find an xml theme parameter for creating soft nav buttons eg. in Nexus 5 to the specified color / transparent and accept overlay. I can't find anything yet.

Example: enter image description here

+3


source to share


1 answer


To do this inside the app I used it in styles.xml

<item name="android:windowTranslucentNavigation">true</item> <item name="android:windowTranslucentStatus">true</item> <item name="android:fitsSystemWindows">true</item>

But you need to manipulate the layout objects below the navigation bar (like the FAB button).



Not sure if this is what you want, just try it.

Greetings

0


source







All Articles