3

I have followed may solutions but none of them works . I wan to know the easiest way to achieve this...(Background images covers the status bar)

enter image description here

AskNilesh
  • 67,701
  • 16
  • 123
  • 163
Hritik Gupta
  • 611
  • 5
  • 20
  • Try this answer it will work https://stackoverflow.com/questions/52294746/bottomnavigationbar-underneath-navbar/52341684#52341684 – AskNilesh Sep 21 '18 at 05:44

1 Answers1

7

Please these to your Base Application theme style

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

You also need to add below property to your parent layout.

android:fitsSystemWindows="true"
Alex
  • 1,406
  • 2
  • 18
  • 33