0

以下のコードを実行した各セルの中央に ImageButton がある 3*3 グリッドが必要です

TableLayout tl=new TableLayout(this);
int intNbRows=3;
int intNbCols=3;
for (int i = 0 ; i < intNbRows;i++)
{
   TableRow tr=new TableRow(this);
   tr.setMinimumHeight(hauteur/intNbRows);//TODO : a voir 
   tr.setMinimumWidth(largeur/intNbCols); //TODO : a voir
   tr.setId(100+i);

   for (int j = 0 ; j < intNbCols;j++)
   {
      int numImage=((i*intNbCols)+j+1);
      final ImageButton myButton=new ImageButton(this);
      Drawable d=Drawable.createFromPath("/sdcard/b" + numImage  + ".png");
      myButton.setBackgroundDrawable(d);
      myButton.setId(200+numImage);
      myButton.setOnClickListener(this);
      myButton.setPadding(0, 0, 0, 0);
      myButton.setScaleType(ScaleType.CENTER_INSIDE);
      tr.addView(myButton);
   }
   tr.setLayoutParams(new TableRow.LayoutParams(largeur,hauteur/intNbRows));
   tl.addView(tr);
}
tl.setLayoutParams(new TableLayout.LayoutParams(TableLayout.LayoutParams.FILL_PARENT,TableLayout.LayoutParams.WRAP_CONTENT));           
this.setContentView(tl);

このコードでは、行の高さは適切ですが、幅はなく、ImageButtons はセルの中央に配置されていません....

何か案が ?

4

1 に答える 1

1

OK、私はテーブルローをlinearlayoutに配置する必要があり、それは非常にうまく機能します:)

于 2010-08-31T08:02:00.460 に答える