SectionIndexer转换为模拟联系人应用程序

时间:2015-03-16 01:00:54

标签: android scroll android-arrayadapter contacts sectionindexer

编辑:帖子底部的解决方案。

我正在为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);
}

1 个答案:

答案 0 :(得分:0)

就我所见,您的实施看起来还不错。我认为有两种可能性:

  1. 您的Contact.getSection()方法未返回正确的值。
  2. 实际上你的索引器工作正常,但它似乎对你很奇怪。如果屏幕顶部的项目(不是列表中的项目)与您的部分索引匹配,则它可以正常工作,因为它始终是确定您在列表中的实际位置的最顶级项目。因此,如果索引器显示字母'B'并且屏幕上显示的第一个联系人以'B'开头,则它是正确的(尽管大多数当前可见的联系人可能以'C'开头,这可能导致错误的假设在“C”部分。
  3. 如果您可以确保这两件事情都是正确的,请提供错误的屏幕截图以及print映射的alphaIndexer


    虽然与您的问题没有直接关系,但您应该重新设计getSectionForPosition()(原文如此!)的实现,因为在浏览列表时返回常量可能会导致滚动条的位置不正确(请参阅{{3更多信息)。