7

ConstraintLayout在 XML 布局中有一个,它包含 3 个视图和一个,Barrier它们是button2、、、和。正如预期的那样,成功地放置在和下,受使用约束。但是,在动态功能模块中使用时,它似乎无法引用约束视图(和),因此坚持到顶部。textView2barrier2button3button3button2textView2barrier2button2textView2button3

这些屏幕截图显示它是成功的基本模块,但不能在动态功能模块中工作:

截图

基础动态特性中的 XML 布局如下:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 2"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="TextView 2"
        app:layout_constraintStart_toEndOf="@id/button2"
        app:layout_constraintTop_toTopOf="parent" />

    <androidx.constraintlayout.widget.Barrier
        android:id="@+id/barrier2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:barrierDirection="bottom"
        app:constraint_referenced_ids="button2,textView2" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 3"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/barrier2" />
</androidx.constraintlayout.widget.ConstraintLayout>

但是,如果我用代码而不是 XML 设置约束,那就成功了:

  barrier2.referencedIds = intArrayOf(R.id.button2, R.id.textView2)

如何正确引用button2textView2在 XML 布局内?

4

1 回答 1

2

检查(反编译的)源代码,我找到了一个(hacky?)解决方案:使用完全限定的资源 ID(package:type/entry)。由于 linter 给出错误,这似乎不是“官方方式”,但它有效。

假设应用程序包是com.example.app,动态功能模块名称是dynfeat,在 ID 前面加上<package>.<module>:id/这样的:

app:constraint_referenced_ids="com.example.app.dynfeat:id/button2,com.example.app.dynfeat:id/textView2"

我实际上对这个解决方案并不满意,因为像这样的代码很难维护,例如,在重命名动态功能模块名称时。因此,另一种解决方案是对类进行子Barrier类化并在构造函数中处理它。

于 2018-12-05T09:02:25.930 回答