我在 xml 中有一个表格布局。我还在代码中添加了一些行。如何在代码中设置一些 View 的 column_layout?
在 xml 我有:
android:layout_column="3"
如何在代码中实现相同的目标(例如对于 TextView)?
最佳答案
TextView tv = new TextView(this);
tv.setLayoutParams(new TableRow.LayoutParams(3));
关于android - 如何在代码中设置 View 的布局列( View 在 tablerow 内)?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6082021/