Skip to content

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

Open
jaeho wants to merge 3 commits into
ongakuer:masterfrom
jaeho:master
Open

Made enable override indicator count for infinite loop viewpager.#140
jaeho wants to merge 3 commits into
ongakuer:masterfrom
jaeho:master

Conversation

@jaeho

@jaeho jaeho commented Jul 5, 2020

Copy link
Copy Markdown

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

jaeho commented Jul 5, 2020

Copy link
Copy Markdown
Author

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