我知道这是一个新手问题,但是我有一个Integer[][]数组初始化为Integer[X][Y],还有一个Button[][]数组,我如何将Button数组也初始化为Button[X][Y]。我试过用double for循环,但我觉得我缺少一个更简单的方法。
Button buttons[][] = {
{findViewById(R.id.button00), findViewById(R.id.button01)},
{findViewById(R.id.button10), findViewById(R.id.button11)}
};
这段代码对我来说很好用