ConstraintLayoutに3つのボタンを追加しました。これらのボタンを無効または有効にするボタンを追加しました。ConstraintLayoutで複数のビューをグループ化する方法
通常のLinearLayoutを使用していた場合。私はすべてのボタンをリニアレイアウトに入れ、その特定のレイアウトを有効または無効にすることができました。
しかし、ConstraintLayoutを使用しています。だから、私はこれらのボタンをすべて無効にしたり有効にしたりする必要があります。異なるビューをグループ化するにはConstraintLayoutの方法が必要であると思います。
親切ConstriantLayout
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button"
android:layout_marginTop="16dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginBottom="16dp"
android:layout_marginStart="16dp"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginLeft="16dp" />
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button2"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginBottom="16dp"
android:layout_marginStart="8dp"
app:layout_constraintLeft_toRightOf="@+id/button"
android:layout_marginLeft="8dp"
app:layout_constraintTop_toTopOf="@+id/button" />
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button3"
app:layout_constraintTop_toTopOf="@+id/button2"
android:layout_marginEnd="16dp"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginRight="16dp"
android:layout_marginStart="8dp"
app:layout_constraintLeft_toRightOf="@+id/button2"
android:layout_marginLeft="8dp" />
Chainsがあなたに役立つかもしれません:https://developer.android.com/reference/android/support/constraint/ConstraintLayout.html#Chains – krossovochkin