2011-08-29 116 views

回答

14

使用下面的代码来创建TableLayout

TableLayout tbl=new TableLayout(context); 

使用下面创建表行

TableRow tr=new TableRow(context); 

添加视图到表行

tr.addView(view); 

查看这里可能是一个TextView或EditText上或等..

添加表行到TableLayout

tbl.addView(tr); 

就像你可以添加更多的表行到表布局。

+0

非常感谢你..... –

+0

它正在正常工作,但不显示活动画面上的任何输出......这里是我的代码 –

+0

的LayoutParams PARAMS =新LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT)\t \t TableLayout layout = new TableLayout(this); TableLayout.LayoutParams layoutparams = new TableLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT); TableRow tablerow = new TableRow(this); TextView tv = new TextView(this); tv.setText(“Demo for TableLayout”); tv.setLayoutParams(params); EditText et = new EditText(this); et.setHint(“Enter Text”); et.setLayoutParams(params); tablerow.addView(tv); tablerow.addView(et); layout.addView(tablerow); this.addContentView(layout,layoutparams); –

4

下面的代码示例给出Here

public class tablelayout extends Activity implements OnClickListener { 
/** Called when the activity is first created. */ 

//initialize a button and a counter 
Button btn; 
int counter = 0; 

@Override 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 

    // setup the layout 
    setContentView(R.layout.main); 

    // add a click-listener on the button 
    btn = (Button) findViewById(R.id.Button01); 
    btn.setOnClickListener(this);   

} 

// run when the button is clicked 
public void onClick(View view) { 

    // get a reference for the TableLayout 
    TableLayout table = (TableLayout) findViewById(R.id.TableLayout01); 

    // create a new TableRow 
    TableRow row = new TableRow(this); 

    // count the counter up by one 
    counter++; 

    // create a new TextView 
    TextView t = new TextView(this); 
    // set the text to "text xx" 
    t.setText("text " + counter); 

    // create a CheckBox 
    CheckBox c = new CheckBox(this); 

    // add the TextView and the CheckBox to the new TableRow 
    row.addView(t); 
    row.addView(c); 

    // add the TableRow to the TableLayout 
    table.addView(row,new TableLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); 

} 

}

0

| * |表布局使用Java代码3×3个按钮:在tblRowCwtVal在tblColCwtVal
设置字符串
列的 集数排

集数|在tblAryVar中绘制

在这个例子中,我们使用了每个表格视图的按钮。您可以使用TextView | ImageView的和修改相应

int tblRowCwtVal = 3; 
int tblColCwtVal = 3; 
int[][] tblAryVar = 
    { 
     {R.drawable.ic_name, R.drawable.ic_name, R.drawable.ic_name}, 
     {R.drawable.ic_name, R.drawable.ic_name, R.drawable.ic_name}, 
     {R.drawable.ic_name, R.drawable.ic_name, R.drawable.ic_name} 
    }; 

@Override 
protected void onCreate(Bundle savedInstanceState) 
{ 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.srn_nam_uic); 

    namRelLyoVar = (RelativeLayout) findViewById(R.id.NamSrnLyoUid); 

    TableLayout namTblLyoVar = new TableLayout(this); 
    TableLayout.LayoutParams tblLyoRulVar = new TableLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); 
    TableRow.LayoutParams btnLyoRulVar = new TableRow.LayoutParams(50,50); 

    for(int tblRowIdxVar = 0; tblRowIdxVar < tblRowCwtVal; tblRowIdxVar++) 
    { 
     TableRow tblRowVar = new TableRow(this); 

     for(int tblColIdxVar = 0; tblColIdxVar < tblColCwtVal; tblColIdxVar++) 
     { 
      Button namIdxBtnVar = new Button(this); 
      Drawable DrwablIdxVar = getResources().getDrawable(tblAryVar[tblRowIdxVar][tblColIdxVar]); 
      DrwablIdxVar.setColorFilter(Color.rgb(0,128,0), PorterDuff.Mode.SRC_IN); 
      namIdxBtnVar.setBackground(DrwablIdxVar); 

      tblRowVar.addView(namIdxBtnVar, btnLyoRulVar); 
     } 
     namTblLyoVar.addView(tblRowVar, tblLyoRulVar); 
    } 

    namTblLyoVar.setLayoutParams(tblLyoRulVar); 
    namRelLyoVar.addView(namTblLyoVar); 
}