在另一个约束布局中膨胀约束布局



我想以编程方式将 ConstraintLayout 放在另一个 ConstraintLayout 中。但是如果我像以前那样用相对布局给它充气,它就不会出现。

下面是代码内部文件inner_area.xml:

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/innerArea"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
    android:id="@+id/grade_one"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_marginBottom="0dp"
    android:layout_marginLeft="0dp"
    android:layout_marginRight="0dp"
    android:layout_marginTop="0dp"
    android:background="@drawable/onegreen"
    app:layout_constraintBottom_toTopOf="@+id/h1"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toLeftOf="@+id/v1"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.0"
    tools:layout_conversion_absoluteHeight="20dp"
    tools:layout_conversion_absoluteWidth="30dp"
    tools:layout_conversion_absoluteX="0dp"
    tools:layout_conversion_absoluteY="0dp" />
<ImageView
    android:id="@+id/grade_three"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_marginBottom="0dp"
    android:layout_marginRight="0dp"
    android:layout_marginTop="0dp"
    android:background="@drawable/threelila"
    app:layout_constraintBottom_toTopOf="@+id/h2"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toLeftOf="@+id/v1"
    app:layout_constraintTop_toTopOf="@+id/h1"
    app:layout_constraintVertical_bias="0.0"
    tools:layout_conversion_absoluteHeight="20dp"
    tools:layout_conversion_absoluteWidth="30dp"
    tools:layout_conversion_absoluteX="0dp"
    tools:layout_conversion_absoluteY="20dp" />
    .....
 </android.support.constraint.ConstraintLayout>

外部布局文件父级.xml:

   <?xml version="1.0" encoding="utf-8"?>
 <android.support.constraint.ConstraintLayout 
 xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/parentView"
android:background="@color/primary">
</android.support.constraint.ConstraintLayout>

Javacode:

    ViewGroup parentView = rootView.findViewById(R.id.parentView);
    final ConstraintLayout innerArea = (ConstraintLayout) inflater.inflate(R.layout.inner_area, container, false);
    parentView.addView(innerArea);

但是当我在内.xml内layout_width或layout_height改变为wrap_content或match_parent时,什么也没发生。但是当我更改为 2000dp 时,内部布局就会出现。

我做错了什么或错过了什么?

感谢Cheticamp为我指出正确的方向。我正在使用根布局而不是它应该所在的约束布局来膨胀约束布局。所以正确的Javacode是:

    parentView = rootView.findViewById(R.id.parentView);
    ViewGroup parentView = rootView.findViewById(R.id.parentView);
    final ConstraintLayout innerArea = (ConstraintLayout) 
    inflater.inflate(R.layout.inner_area, parentView, false);
    parentView.addView(innerArea);

我似乎很晚才参加聚会,但我尝试了很多方法来解决这个问题,但没有任何效果。

最终只是将内部约束布局放在另一个布局(在我的例子中是相对布局)中,这为我解决了这个问题。

最新更新