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
Creating a CircleIndicator without an AttributeSet does not properly set the width, height, and margin of the indicators:
CircleIndicator
AttributeSet
CircleIndicator indicator = new CircleIndicator(getActivity());
Because handleTypedArray() only sets default values when mIndicatorWidth/mIndicatorHeight/mIndicatorMargin < 0 but they're not set in any constructor.
handleTypedArray()
mIndicatorWidth
mIndicatorHeight
mIndicatorMargin < 0
The text was updated successfully, but these errors were encountered:
I guess the same goes for all the other properties but I never got so far as to see the indicators on-screen.
Sorry, something went wrong.
Sorry, I forgot this case… I will fix it soon.
1. Fix bug #17 ;
1cce824
2. SetOnPageChangeListener deprecated;
No branches or pull requests
Creating a
CircleIndicator
without anAttributeSet
does not properly set the width, height, and margin of the indicators:Because
handleTypedArray()
only sets default values whenmIndicatorWidth
/mIndicatorHeight
/mIndicatorMargin < 0
but they're not set in any constructor.The text was updated successfully, but these errors were encountered: