Android - 如何调用数组中的所有项目

时间:2014-02-09 03:37:34

标签: android arrays

我有一个简单的问题,我似乎无法弄明白。我有一组按钮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;

0 个答案:

没有答案