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

Made enable override indicator count for infinite loop viewpager. #140

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Conversation

jaeho
Copy link

@jaeho jaeho commented Jul 5, 2020

I needed to adjust item count for infinite loop ViewPager. Because the ViewPager has items as Integer.MAX_VALUE.

@jaeho jaeho closed this Jul 5, 2020
@jaeho jaeho reopened this Jul 5, 2020
@jaeho
Copy link
Author

jaeho commented Jul 5, 2020

It will be used like this::

class InfiniteCircleIndicator : CircleIndicator {

    constructor(context: Context?) : super(context)
    constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs)
    constructor(context: Context?, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)
    constructor(context: Context?, attrs: AttributeSet?, defStyleAttr: Int, defStyleRes: Int) : super(context, attrs, defStyleAttr, defStyleRes)

    override fun getCount(viewPager: ViewPager?): Int {
        return if (viewPager?.adapter is CustomPagerAdapter<*>) {
            (viewPager.adapter as CustomPagerAdapter<*>).realCount()
        } else
            super.getCount(viewPager)
    }

    override fun getCurrentPosition(viewPager: ViewPager?, position: Int): Int {
        return if (viewPager?.adapter is CustomPagerAdapter<*>) {
            position % (viewPager.adapter as CustomPagerAdapter<*>).realCount()
        } else
            super.getCurrentPosition(viewPager, position)
    }
}

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

Successfully merging this pull request may close these issues.

1 participant