GoodieBag / CarouselPicker

A Carousel picker library for android which supports both text and icons . :sparkles:
MIT License
708 stars 101 forks source link

Possible to save starting position? #4

Closed Brian-Yeh closed 6 years ago

Brian-Yeh commented 6 years ago

Is there any way to set the starting position of the carousel? Say I have numbers 1-10, is there a way to set it to start at 8?

Vatican-Cameos commented 6 years ago

Use : yourCarouselPicker.setCurrentItem(indexOfItemToBeSelected) at the initialisation, which would suffice your requirement.

Brian-Yeh commented 6 years ago

Thanks for the quick reply!