我正在尝试从ArrayList获取位图图像并随机生成它们的网格以用于netwalk游戏。我在另一个与我的GameView类分开的类中有这个方法:
public int getGridElem(int x, int y) {
if (x < 0 || y < 0 || x >= mColumns || y >= mRows) {
throw new IndexOutOfBoundsException("The coordinates (" + x + ", " + y + ") are not valid.");
}
return mGrid[gridPos(x, y)];
}
我正在努力研究如何使用这个类在ArrayList中显示图像的随机网格?
答案 0 :(得分:0)
如果你改变你的ArrayList然后创建你的网格怎么样?!
Collections.shuffle(ArrayList的);