编辑:帖子底部的解决方案。
我正在为Android应用创建一个联系人屏幕,我希望能够滚动浏览我的手机通讯录。我可以导入手机联系人,使用自定义arrayadapter来组织我的信息,并为listview启用fastscroll选项。另外,当我滚动时,我能够将当前部分的第一个字母显示在我的拇指旁边。 (即如果我在名字以A开头的区域,它应该在我的拇指旁边的气泡中显示' A'滚动)。
我的问题是,不是根据当前位置显示正确的字母,而是显示1个字母BEHIND我在哪里。例如,我在联系人的B部分,并显示字母“A'”。对我做错了什么的想法?
这是我的适配器:
public class ContactAdapter extends ArrayAdapter<Contact> implements SectionIndexer {
Context context;
int layoutResourceId;
ArrayList<Contact> contacts = null;
private HashMap<String, Integer> alphaIndexer;
private String[] sections;
public ContactAdapter(Context context, int layoutResourceId, ArrayList<Contact> contacts) {
super(context, layoutResourceId, contacts);
this.layoutResourceId = layoutResourceId;
this.context = context;
this.contacts = contacts;
Collections.sort(this.contacts);
alphaIndexer = new HashMap<String, Integer>();
for (int x = 0; x < this.contacts.size(); x++)
alphaIndexer.put(this.contacts.get(x).getSection(), x);
Set<String> sectionLetters = alphaIndexer.keySet();
ArrayList<String> sectionList = new ArrayList<String>(sectionLetters);
Collections.sort(sectionList);
sections = new String[sectionList.size()];
sectionList.toArray(sections);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// Additional code here
}
static class ContactHolder {
TextView txtName;
CheckBox checked;
}
public int getPositionForSection(int section) {
return alphaIndexer.get(sections[section]);
}
public int getSectionForPosition(int position) {
return 0;
}
public Object[] getSections() {
return sections;
}
}
以下是最终完成此工作的代码:
public ContactAdapter(Context context, int layoutResourceId, ArrayList<Contact> contacts) {
super(context, layoutResourceId, contacts);
this.layoutResourceId = layoutResourceId;
this.context = context;
this.contacts = contacts;
this.results = new ArrayList<Contact>();
Collections.sort(this.contacts);
// Keys are the different sections, values are the indexes at which those sections start
alphaIndexer = new HashMap<String, Integer>();
// Only set the value for each key (section) when we encounter a new section
String prevSection = "";
for (int x = 0; x < this.contacts.size(); x++) {
String section = this.contacts.get(x).getSection();
if (!prevSection.equals(section)) {
alphaIndexer.put(section, x);
prevSection = section;
}
}
Set<String> sectionLetters = alphaIndexer.keySet();
ArrayList<String> sectionList = new ArrayList<String>(sectionLetters);
Collections.sort(sectionList);
sections = new String[sectionList.size()];
sectionList.toArray(sections);
}
答案 0 :(得分:0)
就我所见,您的实施看起来还不错。我认为有两种可能性:
Contact.getSection()
方法未返回正确的值。如果您可以确保这两件事情都是正确的,请提供错误的屏幕截图以及print
映射的alphaIndexer
。
虽然与您的问题没有直接关系,但您应该重新设计getSectionForPosition()
(原文如此!)的实现,因为在浏览列表时返回常量可能会导致滚动条的位置不正确(请参阅{{3更多信息)。