2

I would like to achieve Android contact's list scroll effect.

I found some similar custom implementations but not the same.

As always, Google creates awesome experiences on its default apps but doesn't add it to the native framework library.

This scrollbar is available on the contacts list since KitKat =/

UPDATE

I found in Android Developers page this list of contacts example and they're implementing this exact effect.

haroldolivieri
  • 2,173
  • 18
  • 29
  • 1
    this? http://developer.android.com/reference/android/widget/SectionIndexer.html – heinst Apr 15 '14 at 18:29
  • SectionIndexer is the widget that I will use to order and split my list alphabetically, but what I'm asking is: How can I make a scrollbar with the effect like in image? – haroldolivieri Apr 15 '14 at 19:59
  • If I may add an off topic tip. Don't use iOS interfaces on android. Android users really don't like that – heinst Apr 15 '14 at 20:17
  • I agree, the first image is from an old app. And because this, I want to make an scrollbar like the one in the second image (used in my Nexus). – haroldolivieri Apr 15 '14 at 20:22

2 Answers2

2

Years later I found this cool L4Digital/FastScroll library that easily achieves the exact same effect I was looking for.

We're working with this library in production with a large user base app w/o any problem.

haroldolivieri
  • 2,173
  • 18
  • 29
1

I found this resource, but this is the google search you're looking for. Theres always androids documentation

Community
  • 1
  • 1
heinst
  • 8,520
  • 7
  • 41
  • 77
  • Thanks, but I updated my question, cause was not clear. I have an example using SectionIndexer to order and split alphabetically, but is really old and ugly – haroldolivieri Apr 15 '14 at 20:13