Search code examples
androidandroid-4.4-kitkatandroid-5.0-lollipop

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


Solution

  • 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