Android slow AlphabetIndexer on cursoradapter

327 Views Asked by At

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 list

mListView.setFastScrollEnabled(true);

I have setup my alphabetindexer as follows

public class FeedFragmentAdapter extends CursorAdapter implements SectionIndexer {

            AlphabetIndexer mAlphabetIndexer;

            public FeedFragmentAdapter(Context context, Cursor cursor, int flags) {
                super(context, cursor, flags);
                cursorInflater = (LayoutInflater) context.getSystemService(
                        Context.LAYOUT_INFLATER_SERVICE);
                this.context = context;
            }

    public void setIndexer(Cursor cursor){

        mAlphabetIndexer = new AlphabetIndexer(cursor,
                cursor.getColumnIndex("name_format"),
                "ABCDEFGHIJKLMNOPQRTSUVWXYZ");
        mAlphabetIndexer.setCursor(cursor);//Sets a new cursor as the data set and resets the cache of indices.

    }
            /**
             * Performs a binary search or cache lookup to find the first row that matches a given section's starting letter.
             */
            @Override
            public int getPositionForSection(int sectionIndex)
            {
                return mAlphabetIndexer.getPositionForSection(sectionIndex);
            }

            /**
             * Returns the section index for a given position in the list by querying the item and comparing it with all items
             * in the section array.
             */
            @Override
            public int getSectionForPosition(int position)
            {
                return mAlphabetIndexer.getSectionForPosition(position);
            }

            /**
             * Returns the section array constructed from the alphabet provided in the constructor.
             */
            @Override
            public Object[] getSections()
            {
                return mAlphabetIndexer.getSections();
            }

The below was not suitable as i am already using a viewholder Android Laggy AlphabetIndexer in ListView

0

There are 0 best solutions below