1

作成したボタン配列のボタンのサイズを変更しようとしていますが、方法がわかりません

これが私のコードです

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.game);
    final TableLayout container = (TableLayout) findViewById(R.id.tableLayout5);

    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);


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

        }

    }

}
4

3 に答える 3

0

あなたが知っているかどうかはわかりませんが、とにかく、これは100個のボタンを作成します:これは次のように行うことができます

public void onCreate(Bundle icicle)
{
    super.onCreate(icicle);
    ViewGroup.LayoutParams lp = new ViewGroup.LayoutParams(width_of_button , height_of_button);
    final TableLayout container = (TableLayout) findViewById(R.id.tableLayout5);

    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.setText("Button "+i+":"+j);   // if you need to trace which is which



            container.addView(btn[i][j],i,lp);// add button with specified dims

    }
于 2013-07-19T01:03:06.197 に答える