Questions tagged [fastscroll]

90 questions
77
votes
11 answers

How to add a fast-scroller to the RecyclerView

Background On ListView, you could have a fast scroller which allowed you to drag a scrollbar to easily scroll to wherever you wished (using fastScrollEnabled attribute) Together with "SectionIndexer" class and optionally some attributes, you could…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
48
votes
7 answers

How to use fast scroll in android?

I have a list of events which are seperated by month and year (Jun 2010, Jul 2010 etc.) I want to enable fast scrolling because the list is really long. How do I enable fast scroll on ListViews in Android?
Rakshi
  • 6,796
  • 3
  • 25
  • 46
47
votes
3 answers
19
votes
2 answers

android fastScroll only covers part of the list

I have a class which implements expandable list activity. In the XML code (or I can do it in java), I set fastScrollEnabled to true. This does in deed enable fast scroll. BUT fast scroll only works in the top portion of the list. Like I can use the…
user544872
  • 199
  • 1
  • 4
17
votes
2 answers

Android - Thumb of fastscroll in expandablelistview doesnt scroll list correctly

i am using an expandablelistview to show a list of groups containing different counts of children. sometimes the list is very long, so i wanted to enable fastscroll. i did this and everything is working fine when i scroll the list with the finger in…
zreptil
  • 230
  • 3
  • 13
10
votes
1 answer

Android ListView fast scroll with sections: section text too long

I am using ListView to implement a timeline. I enabled FastScroll and used SectionIndexer so that user could drag the scrollbar and see the section text displayed. The problem is all these are built-in UI. The textview that displays the section…
0xmars511
  • 143
  • 1
  • 9
9
votes
0 answers

Set fixed height scroll thumb with RecyclerView Fast scroll enabled in android

I have implement RecyclerView fast scroll using following properties:
kinjal patel
  • 585
  • 2
  • 4
  • 12
8
votes
2 answers

Holo fast scroll look on old devices

About my app I have an app that has the holo look. For pre-Honeycomb devices, I just backported some elements of the Holo theme. Working with themes, styles and attrs is ok for CheckBox, RadioButton ... What I'm trying to do I use a ListView to…
6
votes
2 answers

android listview fast scroll customization issue

here is my listview
user1155857
6
votes
2 answers

How to handle the fast-scroller on Lollipop 5.1?

Background I've made a tiny library, which shows how to mimic the style of the stock contacts app of Android Lollipop, here. The problem It seems that on Android 5.1 , the fast scroller looks very different than the previous one, and it's too close…
6
votes
2 answers

Avoid SwipeRefresh while fastScrolling in android

I have a ListView having fastScroll always enabled and SwipeRefresh implementation. When i swipe the list downward, it refreshes the list. My problem is fastScroll. If the list has its first item visible or say at its initial top, then if scroll the…
BST Kaal
  • 2,993
  • 6
  • 34
  • 52
5
votes
0 answers

Force ExpandableListView fastScroll to iterate through all items instead of sections

I'm working with a ExpandableListView and BaseExpandableListAdapter and I noticed that enabling fastScroll the scroll iterates through sections or headers. It would be great if it were not because it does not work properly. The fastScroll iterates…
5
votes
0 answers

Modify fast scroll alphabetical bubble

I am trying to change the bubble containing the letter in the scrollbar. What is its official name BTW ? I am not talking about the fastScrollThumbDrawable or fastScrollTrackDrawable on the right side. See the image below. How to change the color…
5
votes
2 answers

How to detect if a ListView is fast scrolling

Is there a way to detect if a ListView is fast scrolling? That is to say, can we somehow know when the user presses and releases the FastScroller?
mollymay
  • 512
  • 4
  • 13
4
votes
1 answer

Android: How to do fast scrolling for ScrollView with one TextView like in ListView?

I have to show a log file in a TextView which is within a ScrollView. When the log file is bigger, it is very hard to scroll to the end of the view. So how can I implement a fast scrolling like in ListView with 'fastScrollEnabled'? ScrollView and…
egmontr
  • 249
  • 3
  • 15
1
2 3 4 5 6