Questions tagged [fastscroll]

90 questions
0
votes
1 answer

Enabling fastscroll from a ListActivity with a simplecursoradapter

I know you can set fastScroll for listViews, but currently I would like to use a ListActivity with a simplecursoradapter instead. Is there a way to make such a view fast scroll?
Suan
  • 34,563
  • 13
  • 47
  • 61
0
votes
1 answer

jQuery scrollTop() precision when fast scrolling the page (avoid pixels loss)

I am using jQuery scrollTop() value to change an element opacity on page scroll $(document).on('scroll', function(){ if($(document).scrollTop() >= 1 ){ $('#elem').css({'opacity': ($(document).scrollTop() * 0.02)}); } }); it works…
neoDev
  • 2,879
  • 3
  • 33
  • 66
0
votes
1 answer

How to do fast scroll of the cardviews

I'm a beginning android developer. I have made an app with many cards in cardviews, but I doesn't know, how to do fast scroll in my app. My code is here: Cardview's data are changed while srolling RecyclerView P.S: This guide is difficult for me -…
0
votes
0 answers

Android slow AlphabetIndexer on cursoradapter

Noticeably slow/Jittery AlphabetIndexer on a CursorAdapter My listview scrolls smoothly but scrolling up and down when holding the alphabetindexer scrollbar is a bit jittery I am already using a ViewHolder I have set the following on my…
0
votes
0 answers

How to set position of Fast Scroll?

I'm now trying to make a ListView with a fast scroll on it. And I made a custom fast scroll thumb with the code following: try { Field f = AbsListView.class.getDeclaredField("mFastScroller"); f.setAccessible(true); …
Jun
  • 11
  • 3
0
votes
0 answers

Creating custom android fast scroll overlay

I have a listview and I want to have a custom fast scroll overlay similar to this one How can I achieve this? I just need pointing in the right direction.
mungaih pk
  • 1,809
  • 8
  • 31
  • 57
0
votes
1 answer

Implement OnclickListener for child in item listview has implement SectionIndexer

I have a ListView, and I want to implement fastscroll with SectionIndexer with 3 item ImageViews per row item like this: https://www.dropbox.com/s/th83hznhqzr01ds/cap2.png?dl=0 I want implement onclicklistener for each imageview 1, 2, 3 but when I…
atula9286
  • 1
  • 5
0
votes
1 answer

How to get FastScroll to work with ExpandableListView?

I am trying to enable the Fast Scroll in ExpandableListView, and I've tried the workaround solution from this link: android fastScroll only covers part of the list The problem is that it gives me the NullPointerException error whenever I expand…
0
votes
1 answer
0
votes
0 answers

Focus issue on a listview with fastscrollbar enabled

I'm having an issue with a listview. It's displaying items with a checkbox on the right. When I enables the fastscrolling, everytime I press on the checkbox, the fastscrollbar appears and it scrolls to the position I pressed rather than just…
user1026605
  • 1,633
  • 4
  • 22
  • 58
0
votes
1 answer

Conditional compilation of fastScrollThumbDrawable?

I have an app with min API 10, and I set fastScrollEnabled to true. Now, the fastScrollThumbDrawable is really horrible, and I want to change it. I can add in the style.xml the line
Luis A. Florit
  • 2,169
  • 1
  • 33
  • 58
0
votes
1 answer

Can I remove the fast scroll overlay without creating an entire custom fast scroll view?

I have a StickyListHeadersListView for which I implemented the appropriate adapter with SectionIndexer for fast scrolling. However the default fast scroll overlay works only with one character since the text box do not stretch with the text. I found…
deakandris
  • 85
  • 2
  • 10
0
votes
2 answers

How to revert FastScroller android framework commit, and implement in listfragment?

I have a listfragment with a fastscroller, which is not functioning correctly. According to one of the answers here: Fast scroll thumb disappears while scrolling AlphabetIndexer, there is a commit in the android framework causing issues with…
Tim Malseed
  • 6,003
  • 6
  • 48
  • 66
0
votes
1 answer

Alphabetical FastScroll

I am trying to create a fast Scroll with Alphabetical letters. Can somebody tell me how can I use the code in this question in another class? I have a class with a method that returns letters I need to put in the fast scroll, so I want to use this…
Soraia
  • 3
  • 3
0
votes
2 answers

Android Error Log for SectionIndexer Array (with Fast Scroll)

I am using SectionIndexer for an ArrayAdapter and have fast scrolling enabled. Most lists work fine, but a couple crash at the same point and show the same type of log. (Please note: The ListView is based on data inputted from a MySQL table. The…
TheLettuceMaster
  • 15,594
  • 48
  • 153
  • 259
1 2 3 4 5
6