MarkoMilos / Paginate

Library for creating simple pagination functionality upon RecyclerView and AbsListView

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

unable to access classes

ummesulaith opened this issue · comments

Hi,
I was not able to access classes since there is no access modifier please add the access modifier

What classes you can't access and how? Can you provide more information about the issue?
Have you tried the sample?

WrapperAdapter, WrapperSpanSizeLookup I'm not able to access these classes. I had to add them manually by copying the code. I did try the sample codes.

These are meant to be internal classes. Will think about exposing them for the next release.
Can you provide a short elaboration of your use case need for having an access to WrapperAdapter and WrapperSpanSizeLookup

Well I was trying the same implementation of pagination in my project i.e., CustomLoadingListItemCreator where in under onBindViewHolder I was trying to invoke WrapperAdapter and WrapperSpanSizeLookup for gridLayout pagination. Since the classes are exposed internally I was not able to access them, so I had to create the files separately in my code base.