androidandroid-layoutandroid-linearlayoutandroid-relativelayoutnexus-5

Android Nexus5 Navigation Hiding Layout


I'm using Nexus5 for testing application and I got issue that is Navigation bar hides Bottom Layout

Nexus5 Navigation Bar

Main container is RelativeLayout which has LinearLayout on the bottom. other devices are fine and showing well but only Nexus5 has that issue because I think it has navigation bar on the bottom of screen.

Anyone has the same issue that you got? If you do, please share it.


Solution

  • // In style 21 add this line.

     <item name="android:windowDrawsSystemBarBackgrounds">false</item>
    

    for more info visit Documentation..