如何以编程方式创建 android ViewStub?

How to create an android ViewStub programmatically?

我想在我的布局中添加一个 ViewStub。这就是 ViewStub 的样子,如 xml:

<ViewStub
    android:id="@+id/viewstub_id"
    android:layout="@layout/use_this_layout"
    android:inflatedId="@+id/inflated_stub"
    android:layout_width="0dp"
    android:layout_height="0dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

我想出了这段代码,但布局没有显示。
我正在重用 id,因为我要再次删除和添加存根。我想代码不起作用与约束或布局 width/height 有关,但我不确定。我做错了什么?

ViewStub vs = new ViewStub(this);
vs.setId(R.id.viewstub_id);
vs.setLayoutResource(R.layout.use_this_layout);
vs.setInflatedId(R.id.inflated_stub);

ViewGroup.LayoutParams layoutParams = new ViewGroup.LayoutParams(0, 0);
vs.setLayoutParams(layoutParams);

ConstraintLayout cl = findViewById(R.id.viewStubWrapper);
ConstraintSet cs = new ConstraintSet();
cs.clone(cl);
cs.connect(ConstraintSet.PARENT_ID, ConstraintSet.TOP, ConstraintSet.PARENT_ID, ConstraintSet.BOTTOM);
cs.applyTo(cl);

cl.addView(vs); // the ConstraintLayout is the ViewStub's parent
vs.inflate();

我发现了一些似乎有效的东西:

  ViewStub vs = new ViewStub(this);
  vs.setId(R.id.viewstub_id);
  vs.setLayoutResource(R.layout.use_this_layout);
  vs.setInflatedId(R.id.inflated_stub);

  LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
  vs.setLayoutParams(lp);

  ConstraintLayout cl = findViewById(R.id.viewStubWrapper);
  cl.addView(vs);
  vs.inflate();

似乎我根本不需要约束,我只需要使用 LayoutParams.MATCH_PARENT 作为宽度和高度而不是 0。