我正在制作的 Gomoku 程序有问题(在 10x10 板上连续 5 次)。我正在尝试实现从我的 Game.java 到我的 game.xml 的 10x10 按钮数组。这是我目前拥有的代码
public class Game extends Activity implements View.OnClickListener{
private boolean p2Turn = false;
private char board[][] = new char[10][10];
Context c;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.game);
Button btn[][] = new Button[10][10];
for(int i = 0; i<10; i++){
for(int j = 0; j<10; j++){
btn [i][j] = new Button(this);
}
}
}
}
但是我不知道如何在我的 game.xml 中实现 10x10 按钮数组
帮助会很棒:D