ArrayIndexOutOfBoundException仅在数组长度等于1时

时间:2013-01-13 10:52:34

标签: android arrays listview cursor adapter

我有一个收集rawQuery结果的数组。它完美地工作,但当它只有一个结果时抛出此异常。

public String [][] getList() {
        SQLiteDatabase db = this.getWritableDatabase();
        String [][] data;
        Cursor c = db.rawQuery("SELECT nombre FROM productos GROUP BY " +
            "nombre ORDER BY nombre", null);
        if (c.moveToFirst()) {
            data = new String[c.getCount()][1];
            int i = 0; char last = 1;
            do {
                data[i][0]=c.getString(c.getColumnIndex("nombre"));
                if(data[i][0].charAt(0)!=last) {
                            char [] a = {data[i][0].charAt(0)};
                String b = new String(a); 
                            data[i][1]=b; 
                            last = a[0];} else {
                    data[i][1]=null;
                }
                i++;
            } while ( c.moveToNext());
            db.close();
            return data;
        }
        data=new String[1][1]; data[0][0]="-1";
        db.close();
        return data;
    } 

该方法向自定义列表适配器提供了使用分隔符构建listView所需的信息(这就是我在第二列中使用字符的原因)。你能救我吗?

1 个答案:

答案 0 :(得分:2)

您正在将data初始化为数组new String[c.getCount()][1]。这意味着最高有效的第二个下标是0,而不是1.你想要一个双元素数组:new String[c.getCount()][2]