开发者

AlphabetIndexer with Custom Adapter

开发者 https://www.devze.com 2023-01-24 01:12 出处:网络
Can someone show me an example of how to use AlphabetIndexer with a Custom Adapter that uses a getView?I have it working with a standard adapter, but have no clue how to impleme开发者_如何学编程nt it

Can someone show me an example of how to use AlphabetIndexer with a Custom Adapter that uses a getView? I have it working with a standard adapter, but have no clue how to impleme开发者_如何学编程nt it with a custom adapter.

Thanks


If you're using a LoaderManager to manage your adapter's cursor, you'll want to make a small adjustment and override your adapters swapCursor method:

public Cursor swapCursor(Cursor c) {
    // Create our indexer
    if (c != null) {
        mIndexer = new AlphabetIndexer(c, c.getColumnIndex(Books.TITLE),
                " ABCDEFGHIJKLMNOPQRSTUVWXYZ");
     }
     return super.swapCursor(c);
 }

Everything else remains just as @vsm describes.


Hi this is how I use AlphaIndexer

private final class ContactListItemAdapter extends ResourceCursorAdapter
        implements SectionIndexer {
    AlphabetIndexer alphaIndexer;

    public ContactListItemAdapter(Context context, int layout, Cursor c) {
        super(context, layout, c);
        alphaIndexer = new AlphabetIndexer(c, NAME_COLUMN_INDEX,
                " ABCDEFGHIJKLMNOPQRSTUVWXYZ");
    }   

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
            .... 
            a normal getView
            ....
    }  

    public int getPositionForSection(int section) {
        return alphaIndexer.getPositionForSection(section);
    }

    public int getSectionForPosition(int position) {
        return alphaIndexer.getSectionForPosition(position);
    }

    public Object[] getSections() {
        return alphaIndexer.getSections();
    }
}

NAME_COLUMN_INDEX is the index of the column in database schema.

...

If this is not what you need, please add some code about which should be the class to extend and so on.

Anyway I hope this helps.

0

精彩评论

暂无评论...
验证码 换一张
取 消