我在XML布局中有一个ConstraintLayout
,它包含3个视图和一个Barrier
,分别是button2
,textView2
,barrier2
和{ {1}}。如预期的那样,button3
已成功放置在button3
和button2
下,并受textView2
的约束。但是,当在动态功能模块中使用约束视图(barrier2
和button2
)时,似乎似乎无法引用约束视图(textView2
)。 / p>
这些屏幕截图显示成功是基本模块,但不适用于动态功能模块:
base 和动态功能中的XML布局如下:
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
?
答案 0 :(得分:2)
检查(反编译的)源代码,我发现了一个(棘手的?)解决方案:使用完全限定的资源ID(package:type/entry
)。看来这不是“正式方式”,因为短绒棉布会出错,但是可以。
假设应用程序包为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
类子类化并在构造函数中进行处理。