Michał Klimczak

Results 58 comments of Michał Klimczak

You will have to use custom view: https://github.com/FutureMind/recycler-fast-scroll#custom-views.

This is an interesting problem. I think that what you wrote about nested scrolling makes a perfect starting point. One should probably look into how `RecyclerView` handles various scroll methods...

Also, if you decide to file a bug to Google, reference it here, please.

Sorry guys, this lib is quite old and I don't have time to support it anymore. If you found this error and be kind enough to propose a PR, it...

Do you have enough items in your recycler adapter? It has a mechanism which hides it unless there is something to scroll. Otherwise, did you try to use it outside...

Can you provide your code to reproduce it? I'm not sure why the recyclerView is null at that point.

Can't you just use a different version in your code? I don't think the version is enforced by a library (or is it?). You can always exclude it if that...

I'm afraid that there is nothing I can do with it. I mean, to calculate the position of the scrollbar I have to calculate the expected height of the scrollable...

Maybe it will inspire you. My initial idea to cope with it was to cache the size of elements which were already visible on the screen. When you scroll through...

It means that you know the height of the item upfront? So it would not work e.g. with wrap content items for which you don't know the height until they...