android.database.CursorIndexOutOfBoundsException: Index 2 requested, with a size of 2
答案:1 悬赏:70 手机版
解决时间 2021-11-15 12:49
- 提问者网友:放下
- 2021-11-15 08:10
android.database.CursorIndexOutOfBoundsException: Index 2 requested, with a size of 2
最佳答案
- 五星知识达人网友:怙棘
- 2021-11-15 09:07
数组越界,while中的条件改一下就可以了
...
c.moveToFirst();
while(!c.isAfterLast())
{
HashMap map = new HashMap();
map.put("ItemTitle", c.getString(0));
map.put("ItemPrice", c.getString(1));
listItem.add(map);
c.moveToNext()
}
...
...
c.moveToFirst();
while(!c.isAfterLast())
{
HashMap map = new HashMap
map.put("ItemTitle", c.getString(0));
map.put("ItemPrice", c.getString(1));
listItem.add(map);
c.moveToNext()
}
...
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯