我ConstraintLayout
在 XML 布局中有一个,它包含 3 个视图和一个,Barrier
它们是button2
、、、和。正如预期的那样,成功地放置在和下,受使用约束。但是,在动态功能模块中使用时,它似乎无法引用约束视图(和),因此坚持到顶部。textView2
barrier2
button3
button3
button2
textView2
barrier2
button2
textView2
button3
这些屏幕截图显示它是成功的基本模块,但不能在动态功能模块中工作:
基础和动态特性中的 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)
如何正确引用button2
和textView2
在 XML 布局内?