0

私は 10x10 のボタンのボードを作成していますが、プログラムを実行するたびに、ボタンが見えなくなるまでボタンが 1 列だけ下に伸びています。これが私のコードです:

@Override
protected void onCreate(Bundle icicle) {
    super.onCreate(icicle);
    setContentView(R.layout.game);
    ViewGroup.LayoutParams lp = new ViewGroup.LayoutParams(32, 32);
    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,lp);

        }

    }

}

そして私のXMLコード

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/relativeLayout5">



    <Button
    android:id="@+id/newgamebutton"
    android:layout_width="225dp"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:text="@string/newgame" />

  <TableLayout
      android:id="@+id/tableLayout5"
      android:layout_width="fill_parent"
      android:layout_height="400dp"
      android:layout_alignParentLeft="true"
      android:layout_below="@+id/newgamebutton"
      android:orientation="vertical" >

  </TableLayout>

</RelativeLayout>

ボタンが一番下まで伸びて消えているのはなぜだろうと思っています。レイアウトの高さと関係があるのか​​ どうかわかりません。10x10 ボードのように見えるようにするつもりです

4

1 に答える 1