Last active
November 25, 2016 14:27
-
-
Save romandanylyk/cdd74faab8c46bae5fabd4f212af515c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public PageIndicatorView(Context context, AttributeSet attrs) { | |
| super(context, attrs); | |
| TypedArray typedArray = getContext().obtainStyledAttributes(attrs, R.styleable.PageIndicatorView); | |
| int count = typedArray.getInt(R.styleable.PageIndicatorView_piv_count,0); | |
| typedArray.recycle(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment