对于我的 android 应用程序,我需要制作一个View
ID 数组。
该数组将包含 81 个值,因此将它们一一添加非常冗长。这是它现在的样子:
cells[0] = R.id.Square00;
cells[1] = R.id.Square01;
cells[2] = R.id.Square02;
cells[3] = R.id.Square03;
cells[4] = R.id.Square04;
cells[5] = R.id.Square05;
//All the way to 80.
有没有更短/更有效的方法来做到这一点?