如何在Android中动态设置布局参数?

时间:2012-01-31 12:25:48

标签: android layout dynamic parameters android-edittext

我有动态生成的这些文本字段。但我似乎无法为它们设置布局参数。请告诉我我做错了什么。

我可以生成没有布局参数的字段。但是,如果我使用LayoutParams,它甚至都不会生成。

代码:

TableLayout table = (TableLayout) findViewById(R.id.TableLayout1);

TableRow tr = new TableRow(this);
LinearLayout.LayoutParams trparams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
tr.setLayoutParams(trparams);

cg[i] = new EditText(this);
weight[i] = new EditText(this);
cg[i].setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_DECIMAL);
weight[i].setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_DECIMAL);

//Here's where it goes wrong. By adding fieldparams, the text field doesn't even get generated.
LinearLayout.LayoutParams fieldparams = new LinearLayout.LayoutParams(10, LinearLayout.LayoutParams.WRAP_CONTENT, 1.0f);
tr.addView(cg[i], fieldparams);
tr.addView(weight[i], fieldparams);

table.addView(tr);

2 个答案:

答案 0 :(得分:14)

您正在将表格行添加到表格中,因此请使用TableLayout.LayoutParams而不是LinearLayout.LayoutParams。因为我们根据我们要添加的父级使用LayoutParam

答案 1 :(得分:6)

您必须使用 TableRow.LayoutParams 而不是 LinearLayout.LayoutParams

替换您的代码

LinearLayout.LayoutParams fieldparams = new LinearLayout.LayoutParams(10, LinearLayout.LayoutParams.WRAP_CONTENT, 1.0f);

使用以下代码。

TableRow.LayoutParams fieldparams = new TableRow.LayoutParams(10, TableRow.LayoutParams.WRAP_CONTENT, 1.0f);

工作正常。让我知道发生了什么。 : - )