0

我正在以编程方式创建表行,并且我想将我之前创建的视图放在一行中。有什么办法吗?

 for ( current = 0; current < rapor1.length; current++)
    {

        TableRow tr = new TableRow(this);
        tr.setId(100+current);
        tr.setLayoutParams(new LayoutParams(
                LayoutParams.FILL_PARENT,
                LayoutParams.WRAP_CONTENT));   

        TextView f1 = new TextView(this);
        f1.setId(200+current);
        f1.setText(rapor1[current]);
        f1.setTextColor(Color.BLACK);
        f1.setWidth(100);
        tr.addView(f1);

       DrawView dv = new DrawView(this);
        tr.addView(dv);

它应该可以工作,但是出了点问题。

4

1 回答 1

0

我认为这可能会有所帮助。只需更改此字符串:

tr.setLayoutParams(new TableRow.LayoutParams(
TableRow.LayoutParams.FILL_PARENT,
TableRow.LayoutParams.WRAP_CONTENT)); 

当然,您需要将 LayoutParams 设置为要在屏幕上显示的任何视图

于 2012-06-08T13:52:16.880 回答