We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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, everything is working fine but patch is coming at the bottom which looks awkward
The text was updated successfully, but these errors were encountered:
#4 Just update a single line in fitSystemWindows method of class SpringMenu.java
fitSystemWindows
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.
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: