使用tableLayout网格3 * 3

时间:2010-08-31 07:19:12

标签: android grid tablelayout

我想要一个3 * 3网格,每个单元格中都有一个ImageButton 我已经完成了下面的代码

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不在单元格中居中....

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

好的我需要在linearlayout中放置表格,这非常有效:)