siralam / LoopingViewPager

A ViewPager and PagerAdapter combination that support auto scroll, infinite loop and page indicators.
532 stars 64 forks source link

LoopingViewPager can't be extended #45

Open ippschi-md opened 3 years ago

ippschi-md commented 3 years ago

By default, all classes in Kotlin are final. The old LoopingViewPager (on Java) was a public class thus could be extended (which we did). The new LoopingViewPager (on Kotlin) is not open which means it is the same as a final non-extendable class in Java. Can you please make it open so that we can migrate easily to the newest version?