【发布时间】:2010-08-25 15:43:10
【问题描述】:
我已经在我的适配器和 FastScroll 上实现了 SectionIndexer。出现快速滚动,但滚动时字母索引器始终为“A”
列表大约有 1000 项。
这是我对 SectionIndexer 的实现。
@Override
public int getPositionForSection(int section) {
return alphaIndexer.getPositionForSection(section);
}
@Override
public int getSectionForPosition(int position) {
return alphaIndexer.getSectionForPosition(position);
}
@Override
public Object[] getSections() {
return alphaIndexer.getSections();
}
【问题讨论】:
标签: android