我尝试在ConstraintLayout中的其他View的相同位置添加View,但添加的View不会获取另一个View的LayoutParams。
添加的视图发生在容器的左上角。
这是我的代码:
TextView cloneView = new TextView(getContext());
cloneView.setLayoutParams(otherView.getLayoutParams());
mainContainer.addView(cloneView);
答案 0 :(得分:3)
要向ConstraintLayout添加视图,您必须使用ConstraintSet添加约束。
View v = findViewById(...);
ConstraintLayout cl = (ConstraintLayout) findViewById(...);
ConstraintSet c = new ConstraintSet();
cl.addView(v);
int id = v.getId();
c.clone(cl);
c.connect(id, ConstraintSet.Top, otherViewIdAboveV, ConstraintSet.BOTTOM, 0);
...
other constraints
...
c.applyTo(cl);