我是Android开发人员。点击加号按钮我还需要一行。
对于Ex(编辑联系人我们点击加上意味着再添加一行,减去意味着删除该行。只给我xml布局和样本编码。)
答案 0 :(得分:0)
为按钮创建onClickListener()。然后通过
引用你的tableLayouttblLayout = (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);