viethoa / recyclerview-alphabet-fast-scroller-android

This is fast scroller alphabet for android, support version 14 to lastest
56 stars 16 forks source link

Bubble #2

Closed Kaway closed 7 years ago

Kaway commented 8 years ago

Does the bubble works out of the box ?

viethoa commented 8 years ago

I don't get your point? Can you please explain more what you want to do or what's problem are you stuck in?

Kaway commented 8 years ago

I want to know if there is something special to do to display the bubble, or if it works without any other configuration (the scroller perfectly works and I implemented getTextToShowInBubble

    @Override
    public String getTextToShowInBubble(int pos) {
        return "A";
    }

but the bubble doesn't show up

( can you label this issue as a question please ? )

viethoa commented 7 years ago

This function was mapped your RecycleView with fastScroller when you scrolling your RecycleView up or down, the fast-scroller will be select the bubble mapping with current selected item on your RecycleView. So you should set up on the right way to make it work, don't just return "A".