我如何证明ChipGroup中的芯片合理? 我想使用chiose chips实现Material Components,但是我无法证明ChipGroup内部的芯片是否合理。
我可以证明 FlexBoxLayout 中的内容是否合理,但是我必须手动处理单个选择。
<com.google.android.material.chip.ChipGroup
android:id="@+id/general_feedback_flexboxlayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/general_feedback_textview_subtitle"
app:layout_constraintVertical_bias="0.0"
app:singleSelection="true">
<!--<com.google.android.flexbox.FlexboxLayout-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="match_parent"-->
<!--app:flexWrap="wrap"-->
<!--app:justifyContent="space_between">-->
<com.google.android.material.chip.Chip
android:id="@+id/general_feedback_chip_idea"
style="@style/Widget.MaterialComponents.Chip.Choice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkable="true"
android:clickable="true"
android:focusable="true"
android:text="Idea"
android:textColor="@color/colorPrimaryDark"
app:chipBackgroundColor="@color/feedback_chip_state_list"
app:chipStrokeColor="@color/colorPrimaryDark"
app:chipStrokeWidth="1dp" />
<com.google.android.material.chip.Chip
android:id="@+id/general_feedback_chip_problem"
style="@style/Widget.MaterialComponents.Chip.Choice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkable="true"
android:clickable="true"
android:focusable="true"
android:text="Problem"
android:textColor="@color/colorPrimaryDark"
app:chipBackgroundColor="@color/feedback_chip_state_list"
app:chipStrokeColor="@color/colorPrimaryDark"
app:chipStrokeWidth="1dp" />
<com.google.android.material.chip.Chip
android:id="@+id/general_feedback_chip_question"
style="@style/Widget.MaterialComponents.Chip.Choice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkable="true"
android:clickable="true"
android:focusable="true"
android:text="Question"
android:textColor="@color/colorPrimaryDark"
app:chipBackgroundColor="@color/feedback_chip_state_list"
app:chipStrokeColor="@color/colorPrimaryDark"
app:chipStrokeWidth="1dp" />
<com.google.android.material.chip.Chip
android:id="@+id/general_feedback_chip_praise"
style="@style/Widget.MaterialComponents.Chip.Choice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkable="true"
android:clickable="true"
android:focusable="true"
android:text="Praise"
android:textColor="@color/colorPrimaryDark"
app:chipBackgroundColor="@color/feedback_chip_state_list"
app:chipStrokeColor="@color/colorPrimaryDark"
app:chipStrokeWidth="1dp" />
<!--</com.google.android.flexbox.FlexboxLayout>-->
</com.google.android.material.chip.ChipGroup>