Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Transparent navigation soft buttons

I am trying to find the xml theme parameter to make the soft navigation buttons e.g. in Nexus 5 on a given color/transparent and accept overlay. I cannot find something so far.

Example: enter image description here

like image 764
Diolor Avatar asked Dec 04 '14 09:12

Diolor


1 Answers

To do that inside of an App I used this into styles.xml

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

But, you have to manage layout objects under navigation bar (like FAB Button).

Not sure if that is what you want, just give a try.

Cheers

like image 69
Gabriel Pereira Avatar answered Nov 09 '22 07:11

Gabriel Pereira