首页 > 解决方案 > Android 如何证明芯片组中的芯片是合理的?

问题描述

如何证明 ChipGroup 中的芯片是合理的?我想使用Material Components实现chiose 芯片,但我无法证明 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>

结果 : 在此处输入图像描述

例外: 在此处输入图像描述

标签: androidandroid-layoutmaterial-componentsandroid-chipsmaterial-components-android

解决方案


推荐阅读