0

我正在制作的 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

4

2 回答 2

1

按钮已创建但未放置在任何位置。这可能会有所帮助

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.your_activity);
    final LinearLayout container = (LinearLayout)findViewById(R.id.container where you want to place your buttons);

    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);
            btn[i][j].setText("Button "+i);

            container.addView(btn[i][j],i);

        }

    }

}
于 2013-07-19T00:17:33.890 回答
0

在布局中添加按钮...

ViewGroup layout = (ViewGroup) findViewById(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);
              layout.addView(btn [i][j]);
         }

    }
于 2013-07-19T00:11:45.963 回答