android - 在另一个 ConstraintLayout 中膨胀 ConstraintLayout

标签 android xml android-constraintlayout

我想以编程方式将一个 ConstraintLayout 放入另一个 ConstraintLayout 中。但是,如果我按照之前使用 RelativeLayout 的方式对其进行膨胀,它不会显示。

这是代码内部文件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>

外层布局文件parent.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>

Java代码:

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

但是当我在 inner.xml 中将 innerArea 的 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);

关于android - 在另一个 ConstraintLayout 中膨胀 ConstraintLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46630376/

相关文章:

java - 约束布局 : Unable to Wrap_Content and Stack RecyclerView Items

java - 如何使用 Java 从 XML 文件获取属性

xml - XPath - 根据相同条件从不同路径检索多个值

android - 为什么 Android Studio 正在删除和/或更改 layout_margin* 约束?

android - 使用 SQLCipher -Android 将纯内容提供程序数据(由 SQLite 支持)升级为加密

asp.net - XML 与 SQlite 与 Access

android - 在父布局中显示图像的一部分

android - Cordova/Phonegap 所有外部 Ajax 请求返回 404

android - 如何让用户在 unity android 游戏中选择照片?

java - MsgPack 在 Android 中序列化一个 JsonObject