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
目前的srb_starPadding一旦设置,第一颗行星的左边和上面也会加上padding
不知道我的理解对不对,应该是下面这段代码负责,我尝试重写,但却失败了
(com.willy.ratingbar.BaseRatingBar) @OverRide public void setStarPadding(int ratingPadding) { if (ratingPadding < 0) { return; }
mPadding = ratingPadding; for (PartialView partialView : mPartialViews) { partialView.setPadding(mPadding, mPadding, mPadding, mPadding); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
目前的srb_starPadding一旦设置,第一颗行星的左边和上面也会加上padding
不知道我的理解对不对,应该是下面这段代码负责,我尝试重写,但却失败了
(com.willy.ratingbar.BaseRatingBar)
@OverRide
public void setStarPadding(int ratingPadding) {
if (ratingPadding < 0) {
return;
}
The text was updated successfully, but these errors were encountered: