I m 积极建造表Layout。 我需要表Row在某些栏目中的位置上存在差距。
例如,我需要浏览3和5个职位的图像,下行的图像是1、2、4个职位的图像。 我试图利用:
TableRow row1 = new TableRow(this);
row1.addView(new ImageView(this), 2);
row1.addView(new ImageView(this), 4);
mTable.addView(row1);
TableRow row2 = new TableRow(this);
row2.addView(new ImageView(this), 0);
row2.addView(new ImageView(this), 1);
row2.addView(new ImageView(this), 3);
mTable.addView(row2);
but I got IndexOfBoundException at Runtime.
ERROR/AndroidRuntime(771): Caused by: java.lang.IndexOutOfBoundsException: index=2 count=0
Any suggestions would be appreciated.
Thank you.