我有一个简单的问题,我似乎无法弄明白。我有一组按钮Button[] buttons = new Button[9];
,显然这将包括九个按钮。无论如何都要打电话给所有人吗?而不是单独调用它们
buttons[0] = (Button)findViewById(R.id.b0);
buttons[1] = (Button)findViewById(R.id.b1);
buttons[2] = (Button)findViewById(R.id.b2);
buttons[3] = (Button)findViewById(R.id.b3);
...
像这样,无论如何我可以去做像这样的事情
int all[] = {0, 1, 2, 3, 4, 5, 6, 7, 8};
buttons[all] = DOCODEHERE;