我是android新手 我的表格布局包含一个表格行。这一行分别在第一和第二列有两个文本视图..
有人能告诉我如何动态添加表格行中存在的这两个文本视图吗?
答案 0 :(得分:1)
如果您已使用TableRow将内容视图设置为布局:
TextView tv1 = new TextView(this);
TextView tv2 = new TextView(this);
TableRow tr = (TableRow)findViewById(R.id.<your table row id>);
//apply layout params to your TextViews, set text etc...
tr.addView(tv1);
tr.addView(tv2);