1
wxr
2023-04-23 2cd55265ccff3b0a267d7953b2dd9e5dca437aa6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.videogo.widget;
 
import java.util.Arrays;
 
import android.widget.SectionIndexer;
 
public class MySectionIndexer implements SectionIndexer {
    private final String[] mSections;//
    private final int[] mPositions;
    private final int mCount;
 
    public MySectionIndexer(String[] sections, int[] counts) {
        if (sections == null || counts == null) {
            throw new NullPointerException();
        }
        if (sections.length != counts.length) {
            throw new IllegalArgumentException(
                    "The sections and counts arrays must have the same length");
        }
        this.mSections = sections;
        mPositions = new int[counts.length];
        int position = 0;
        for (int i = 0; i < counts.length; i++) {
            if (mSections[i] == null) {
                mSections[i] = "";
            } else {
                mSections[i] = mSections[i].trim();
            }
 
            mPositions[i] = position;
            position += counts[i];
        }
        mCount = position;
    }
 
    @Override
    public Object[] getSections() {
        // TODO Auto-generated method stub
        return mSections;
    }
 
    @Override
    public int getPositionForSection(int section) {
        if (section < 0 || section > mSections.length || section > mPositions.length - 1) {
            return -1;
        }
        return mPositions[section];
    }
 
    @Override
    public int getSectionForPosition(int position) {
        if (position < 0 || position > mCount) {
            return -1;
        }
        int index = Arrays.binarySearch(mPositions, position);
        return index >= 0 ? index : -index - 2; 
 
    }
 
}