Questions tagged [fast-scroller]

5 questions
63
votes
4 answers

Is there a callback for when RecyclerView has finished showing its items after I've set it with an adapter?

Background I've made a library that shows a fast-scroller for RecyclerView (here, in case anyone wants), and I want to decide when to show and when to hide the fast-scroller. I think a nice decision would be that if there are items that aren't shown…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
1
vote
1 answer

How to add fast-scroller correctly for the RecyclerView for the newer versions of it?

Background In the past, I've asked how to create a fast-scroller for the RecyclerView (here), and found a way to add it and I've even published it, including a Github project (here). The problem Starting with specific support library version, things…
0
votes
1 answer

Determine when to show recyclerview fast scroller thumb?

I have added a custom fast scroller for recyclerview in my application. But the problem is, the fast scroller keeps showing even if the content of the recyclerview is very less. Can anyone suggest me any way, to initially check if the recyclerview…
0
votes
0 answers

How to adjust scroll bar in RecyclerView with FastScroller in xamarin android?

I want to implement fast scroll with bubble text view in xamarin.android. I took reference from the following link https://github.com/xamarin/monodroid-samples/tree/master/FastScroll This example is not properly working for fewer items. In this…
RMR
  • 599
  • 3
  • 12
  • 35
-7
votes
1 answer

How can I make a list with alphabetical scrolling?

How can I make the simplest list using the recyclerview and add there alphabetical scrolling (as in contacts)? Please describe it to me or give me an example of how to do it. P.S: I'm new in Android development and I've never worked with the…