The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
99 views

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 ...
2
votes
1answer
175 views

ListView fast scroll bars bug

I'm working on dictionary application. I have a listview with fast scroll enabled and adapter which implements SectionIndexer. When I'm working with chinese dictionary I have much more sections then ...
4
votes
1answer
407 views

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, ...
5
votes
1answer
393 views

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 ...
0
votes
1answer
108 views

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 ...
0
votes
1answer
159 views

Thumb scroll with large letter preview

I'm using a ListView object with thumb scrolling enabled and am wondering how to include a large letter preview, as can be seen in the image below: I know how to make the thumb scroll work; it's ...
0
votes
1answer
322 views

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 ...
1
vote
0answers
308 views

Android ListView SectionIndexer

I have no problem using section indexer normally but here is what I am trying to do: I have an alphabetical list that uses headers and entries - they all work perfect. However I want to add custom ...
1
vote
0answers
202 views

Android: Use fastScroll in a WebView

I'm writing an Android app that displays ridiculously long HTML pages in a WebView control (nothing I can do about that, it parses an external website). Is there any way to make scrolling easier? I ...
1
vote
1answer
484 views

Add fast scroll to a AlertDialog.Builder scrolllist

I have a large list of users being displayed in an AlertDialog as a selection list. This is the code I am using to generate it: AlertDialog.Builder builder = new AlertDialog.Builder(thisContext); ...
2
votes
1answer
144 views

Android fastScroll on the left

Is it possible to set fastScroll on the left instead of right? like here: ...
1
vote
1answer
363 views

How to override the Android ListView fast scroller appearance

I'm trying to implement a ListView with a FastScroll mechanism which uses time rather than A-Z Unfortunately I can't seem to find a way into the layout used by the FastScroller index - it seems ...
3
votes
1answer
379 views

Fast scroll behavior on earlier android versions

I'am developing an application for android spanning from API level 8 to 14. I'am trying to get the same fast scroll behavior of android 4 (see contacts-app) in the earlier versions (fixed stylish ...
14
votes
5answers
7k views

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 list views in ...
1
vote
1answer
786 views

Android ListView fastScrollThumbDrawable not working

i am doing an app where i want the fastscroll tab on my listview to be a custom thumb tab. reading the docs online i thought this would do it: <ListView android:id="@android:id/list" ...
2
votes
1answer
302 views

How to create Fast Scrolling with front charecter to dispaly on screen when user Drag on List of Alphabet

I am New to android, I have did the contact list like the Image look like the below, but the problem is when i click on alphabet list the charterer is not displaying, it is only displaying only ...
2
votes
1answer
2k views

android listview fast scroll customization issue

here is my listview <ListView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/ListView" android:fastScrollEnabled="true" ...
0
votes
1answer
188 views

Listview, Bitmaps and FastScroll strange heap allocation

I have a strange allocation issue on a listview, populated with LOTS of views with bitmaps. The strange thing is that if I scroll down the list manually, the system allocates more and more space on ...
1
vote
0answers
1k views

Can we have a custom scrollbar on an ScrollView?

I'd like to make a custom scrollbar for one of my scrollview, and impossible to find how to do. I want my scrollbar to be more visible, and controllable like the fastScroll of the ListViews. ...
2
votes
1answer
1k views

ListAdapter with implemented SectionIndexer throws ClassCastException

I'm trying to implement a ListAdapter by implementing the Interface not extending BaseAdapter sub classes like ArrayAdapter. But all I get in return is a ClassCastException telling me nothing about ...
16
votes
1answer
502 views

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 ...
0
votes
0answers
793 views

Android List view SectionIndexer - list view not displaying curent scroll letter

I am trying to use secionIndexer with fast scroll in list view. I have implemented but on scroll of list it should popup the current letter at which we have scrolled, but its not showing that. on ...
2
votes
1answer
547 views

Android listview search and fastscroll

I fairly new to programming for the Android platform and have some question about howto add a search box and fastscroll to the listview of my app. I have used the code of Jeff Sharkey to add a ...
0
votes
0answers
258 views

android - fastscroll is being painted wrong

I have a problem of fastscroll on listview painting in a wrong place only in certain cases. I cannot figure out why. Can anybody give me some clues? Here is the debug messages of the style that is ...
1
vote
1answer
1k views

FastScroll Behaves Strangely with a Custom ListAdapter which implements SectionIndexer

I am working on a ListActivity that has a inner class that is a child of SimpleAdapter that implements SectionIndexer. class MySimpleAdapter extends SimpleAdapter implements SectionIndexer { ...
1
vote
3answers
616 views

ListView with AlphaIndexer Cache Not Clearing

So I have one activity with a listview in it that is dynamically updated via cursors. The cursor object is being reused by simply reassigning a query command to this variable, which returns a whole ...
1
vote
2answers
703 views

setFastScrollEnabled works fine on all my phones and crashes on Honeycomb tablet

I recently get a Xoom and I am currently working on improving my apps for HoneyComb tablets. Everything is fine and my last issue concern a ListView with a FastScroll into a TabActavity. ...
1
vote
2answers
1k views

Styling the sectionIndexer

Has anyone found a way to style the widget that appears when SectionIndexer is used? Styling changes such as changing the text color or the background color.
0
votes
1answer
4k views

android - listview fastscroll with alphabet like on iPhone contacts activity

Hi I am simply trying to implement an iPhone like fastscroll with an alphabetic scrollbar. See here: http://appsreviews.com/wp-content/uploads/2010/08/Cures-A-Z-App-for-iPhone.jpg Surprisingly I ...
15
votes
1answer
919 views

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 ...
0
votes
1answer
1k views

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?
0
votes
1answer
641 views

how to implement the expandablelist in android? [closed]

i amm try to replicate the inbuilt contact app.... how can i have a + button to add multiple phone and email? also i want the fastscrollview to be enabled in it
3
votes
1answer
2k views

How to enable fast scroll (thumb) in Android Spinner's drop-down menu?

In an application I have a Spinner that has tens of items. When the user taps on the spinner, a popup dialog appears that shows the list of possible selections. However, since there are (sorted) tens ...