在ConstraintLayout中以编程方式添加视图

时间:2017-03-16 21:06:02

标签: android android-constraintlayout

我尝试在ConstraintLayout中的其他View的相同位置添加View,但添加的View不会获取另一个View的LayoutParams。

添加的视图发生在容器的左上角。

这是我的代码:

TextView cloneView = new TextView(getContext());
cloneView.setLayoutParams(otherView.getLayoutParams());
mainContainer.addView(cloneView);

1 个答案:

答案 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);