Android:java.lang.IndexOutOfBoundsException:索引9无效,大小为9

时间:2012-09-06 08:04:33

标签: android if-statement int indexoutofboundsexception

我的以下代码出现问题:

view.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick (View v) {
        int row = position +1;
        int listLength = data.size();
        HashMap<String,String> nextRow = data.get(position+1);
        if (row < listLength ) {
            nextRow.put("greyedOut","false");
        } else {
            System.out.println("HATSIKIDEE!!");
        }
        notifyDataSetChanged();
        System.out.println(row);
        System.out.println(listLength);
    }
});

此代码放在我的Adapter中并调整ListView,它适用于每一行,但在选择返回以下错误的最后一行时崩溃:java.lang.IndexOutOfBoundsException: Invalid index 9, size is 9

我不明白的是System.out.println()的输出是根据if语句:

    1 of 9
    2 of 9
    3 of 9
    4 of 9
    5 of 9
    6 of 9
    7 of 9
    8 of 9

At 9 of 9 it crashes.
Please help me how to solve this error.

4 个答案:

答案 0 :(得分:1)

HashMap<String,String> nextRow = data.get(position);

而不是

HashMap<String,String> nextRow = data.get(position+1);

索引始终从0开始,而不是从1

开始

然后你会得到

0 of 9
1 of 9
2 of 9
3 of 9
4 of 9
5 of 9
6 of 9
7 of 9
8 of 9

TOTAL = 9

答案 1 :(得分:1)

int row = position + 1;
int listLength = data.size();
HashMap<String,String> nextRow = null;
if(row < listLength)
{
   nextRow = data.get(row);
}
if(nextRow != null)
{
   nextRow.put("greyedOut","false");
   notifyDataSetChanged();
}
else 
{
   System.out.println("HATSIKIDEE!!");
}    
System.out.println(row);
System.out.println(listLength);

答案 2 :(得分:1)

然后试试这个:

HashMap<String,String> nextRow = null;
if (position + 1 < listLength)
{
    nextRow = data.get(position+1); 
}
if (nextRow != null)
{
    //whatever it is you are trying to achieve by detecting the next row
}

答案 3 :(得分:0)

Java使用基于零的索引 - 意味着在位置0处会有某些东西。这意味着在任何列表中,列表中都有0 - (n-1)个项目。

您需要更改

HashMap<String,String> nextRow = data.get(position+1);


   HashMap<String,String> nextRow = data.get(position);

这样你去的最大INDEX是8,这是你列表中的第9个元素。 你的数组看起来像这样: [0] - 第1个元素 [1] - 第2个元素 .... 等等。