安卓:FastScrolling SectionIndexer getSections()被调用一次

2019-09-20 03:42发布

我创建了一个ListView这是使用FastScroll 。 (参见图)当用户点击任何按钮下的(即所有曲目,艺术家,专辑),每次下面的自定义ArrayAdater被称为

ArrayAdapter<String> adapter = new ScrollIndexListAdapter(Listing.this, elements); 
//Code for ScrollIndexListAdapter is below

和相同的ListView更新。

问题 :根据我的Android调查, getSections()方法被调用一次(即只在一次ScrollIndexListAdapter被调用)。

这一次,段人口与该fastScrolling完美的作品。

但是,当我点击艺术家/专辑更新ListView控件,该getSections()方法没有被调用。 所以上了年纪的部分被使用,而FastScrolling仍显示旧字母的预览。

那么,如何才能让部分得到更新,每次当ListView的更新?

有一个setSections()方法,但我无法找到如何使用它。

代码ScrollIndexListAdapter类:

public class ScrollIndexListAdapter extends ArrayAdapter implements
        SectionIndexer {

    // Variables for SectionIndexer List Fast Scrolling
    HashMap<String, Integer> alphaIndexer;
    String[] sections;
    private static ArrayList<String> list = new ArrayList<String>();

    public ScrollIndexListAdapter(Context context, ArrayList<String> list) {
        super(context, android.R.layout.simple_list_item_1, android.R.id.text1,
                list);
        this.list.clear();
        this.list.addAll(list);
        /*
         * Setting SectionIndexer
         */
        alphaIndexer = new HashMap<String, Integer>();
        int size = list.size();
        for (int x = 0; x < size; x++) {
            String s = (String) list.get(x);
            // Get the first character of the track
            String ch = s.substring(0, 1);
            // convert to uppercase otherwise lowercase a -z will be sorted
            // after upper A-Z
            ch = ch.toUpperCase();
            if (!alphaIndexer.containsKey(ch)) {
                alphaIndexer.put(ch, x);
            }
        }
        Set<String> sectionLetters = alphaIndexer.keySet();
        // create a list from the set to sort
        ArrayList<String> sectionList = new ArrayList<String>(
                sectionLetters);
        Collections.sort(sectionList);
        sections = new String[sectionList.size()];
        sectionList.toArray(sections);
    }

    /*
     * Methods for AphhabelIndexer for List Fast Scrolling
     */
    @Override
    public int getPositionForSection(int section) {
        String letter = (String) sections[section];
        return alphaIndexer.get(letter);
    }

    @Override
    public int getSectionForPosition(int position) {
        String letter = (String) sections[position];
        return alphaIndexer.get(letter);
    }

    @Override
    public Object[] getSections() {
        return sections;
    }
}

Answer 1:

看来,最新的FastScroll版本不存在这样的问题。 但是,你的情况,有一个转身。 当设置适配器到ListView,禁用和启用快速滚动。 请参见下面的代码:

            adapter = new ScrollIndexListAdapter(this, data);
            listView.setFastScrollEnabled(false);
            listView.setAdapter(adapter);
            listView.setFastScrollEnabled(true);


文章来源: Android: FastScrolling SectionIndexer getSections() is called only once