我在其中创建了九个Butto
n 视图main.xml
并将其命名为Button1, Button2... Button9..
然后在我的代码中我创建了一个ArrayList
Button 并且很明显,这个按钮数组将我的 Button 保存main.xml
在我目前的知识中,以便在我的 main.xml 中获取 Button需要使用 findViewById 方法,基本上我需要循环数组来获取按钮
ArrayList<Button> buttons;
int MAXBTN = 9;
for( int i = 0; i < BTN; i++ )
{
// Code here to use the findViewById method to get the button
}
我的问题是我需要传递R.id.Button1 .. R.id.Button3
给 findViewById 方法,但我需要循环这个。无论如何我可以在findViewById
while循环中传递一个计数器吗?
请指教。