r0adkll / Slidr

Easily add slide to dismiss functionality to an Activity
Apache License 2.0
2.68k stars 389 forks source link

Remove status bar rect #53

Open jhpassion0621 opened 6 years ago

jhpassion0621 commented 6 years ago

When I swipe activity, I can see white space for status bar. How can I remove this region?

r0adkll commented 6 years ago

This is a bug, I should have it fixed in the next release

Kolyall commented 5 years ago

@r0adkll Any update?

bhargavms commented 5 years ago

technically not a bug you need to enable this in your activity's theme

<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>

if you dont have

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

you will end up seeing a white padding for the status bar.