Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to stretch layout background image all the way up to status bar? [duplicate]

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

like image 896
Hritik Gupta Avatar asked Sep 19 '25 19:09

Hritik Gupta


1 Answers

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"
like image 164
Alex Avatar answered Sep 21 '25 07:09

Alex