我希望在80个项目的列表中显示,但是在我进行测试的10个之后,应用程序停止并且logcat显示ArrayIndexOutOfBoundsException。
如何让我的名单更大?
我的代码:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.galerie_galerie);
rowItems = new ArrayList<RowItem>();
for (int i = 0; i < titles.length; i++) {
RowItem item = new RowItem(images[i], titles[i], descriptions[i]);
rowItems.add(item);
}
listView = (ListView) findViewById(R.id.list);
CustomListViewAdapter adapter = new CustomListViewAdapter(this,
R.layout.list_item, rowItems);
listView.setAdapter(adapter);
listView.setOnItemClickListener(this);
}
答案 0 :(得分:3)
您收到此错误的原因是您的image
或descriptions
数组没有titles
数组那么大。
例如,如果:
titles
数组有10个元素images
数组有10个元素description
有9个元素当您尝试访问for循环中的第10个元素时,从标题和图像中提取第10个元素,但描述中没有那么多元素,因此您将获得ArrayIndexOutOfBoundsException
如何避免这种情况将完全取决于您的数据以及您想要的结果。如果您有数据支持每个标题的图像和描述,那么您可能在初始化数据时犯了一个错误。这可能很容易解决。
如果您没有数据支持每个标题的图像和/或说明,则应在for
循环内进行检查,以查看是否有可用于标题的图像或说明。如果没有(您正在检查的当前索引是否传递了数组的长度),那么您可以将占位符放入ArrayList
。如果你这样做,请记得稍后当你真正使用它时处理它。