I have created a custom Adapter called: ContactsAdapter which inherits from BaseAdapter and implements ISectionIndexer.
Is it possible to implement an AlphabetIndexer on the custom adapter without making use of a ICursor? Reason being, the adapter makes use of a List<T> to stores all the items.
Many thanks in advance!
Short answer; yes you can do it without making use of
ICursor. Basically you implement the interfaceISectionIndexeron yourBaseAdapter<T>ISectionIndexerimplementation consists of the following methods:Kind regards,