再添一行

时间:2013-02-22 12:55:11

标签: android-layout

我是Android开发人员。点击加号按钮我还需要一行。

对于Ex(编辑联系人我们点击加上意味着再添加一行,减去意味着删除该行。只给我xml布局和样本编码。)

1 个答案:

答案 0 :(得分:0)

为按钮创建onClickListener()。然后通过

引用你的tableLayout
tblLayout = (TableLayout)findViewById(R.id.tableLayout);

然后使用

TableRow = new TableRow(this);    
//Do something with this row
row.setText("...");

//add the row to the tblLayout
tblLayout.addView(row);