7

ConstraintLayoutXML レイアウト内に があり、3 つのビューと がBarrier含まれbutton2textView2barrier2ますbutton3。予想どおり、はとbutton3の両方の下に正常に配置され、 を使用して拘束されます。ただし、動的機能モジュールで使用すると、制約ビュー (および)を参照できないようです。button2textView2barrier2button2textView2button3

これらのスクリーンショットは、ベース モジュールでは成功しているが、動的機能モジュールでは機能していないことを示しています。

スクリーンショット

基本機能と動的機能の 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)

XML レイアウトを参照し、その中でbutton2正しく参照するにはどうすればよいですか?textView2

4

1 に答える 1