Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

White/Black patch is coming in Activity layout in some devices #4

Open
Pinjari opened this issue Oct 4, 2018 · 1 comment
Open

Comments

@Pinjari
Copy link

Pinjari commented Oct 4, 2018

White/Black patch is coming in Activity layout in some devices,
everything is working fine but patch is coming at the bottom which looks awkward
screenshot_20181004-181429

@RayVaniya
Copy link

RayVaniya commented Nov 20, 2019

#4 Just update a single line in fitSystemWindows method of class SpringMenu.java

From this :

this.setPadding(mContent.getPaddingLeft() + insets.left, mContent.getPaddingTop() + insets.top, mContent.getPaddingRight() + insets.right, bottomPadding);

To this :

this.setPadding(mContent.getPaddingLeft() + insets.left, mContent.getPaddingTop() + insets.top, mContent.getPaddingRight() + insets.right, 0);

and issue is solved, @peng8350 Please update this, and thank you very much for providing this amazing drawer to us.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants