如何使ChipGroup充当radioButton的角色,可以在更改背景颜色的同时一次选择一项。

java - 如何使ChipGroup像radioGroup一样工作?-LMLPHP

我看到this link这样的东西,但对我没有帮助,因为正在使用layoutInflater来显示我的筹码项目。

firebaseFirestore.collection("Categories").addSnapshotListener((queryDocumentSnapshots, e) -> {
            for (DocumentChange doc: queryDocumentSnapshots.getDocumentChanges()){
                if (doc.getType() == DocumentChange.Type.ADDED){
                    Categories categories = doc.getDocument().toObject(Categories.class);
                    post_list.add(categories);
                    Chip chip = (Chip) getLayoutInflater().inflate(R.layout.chip_item_layout, chipGroup, false);
                    chip.setText(categories.getTitle());
                    chipGroup.addView(chip);
                    chipGroup.setOnCheckedChangeListener((chipGroup, id) -> {
                        Chip chip2 = ((Chip) chipGroup.getChildAt(chipGroup.getCheckedChipId()));
                        if (chip2 != null) {
                            for (int i = 0; i < chipGroup.getChildCount(); ++i) {
                                chipGroup.getChildAt(i).setClickable(true);
                                chip2.setChipBackgroundColorResource(R.color.customOrange);
                            }
                            chip2.setClickable(false);
                        }
                    });

                }
            }
        });

最佳答案

在您的ChipGroup中使用app:singleSelection="true"属性。这样,ChipGroup可以配置为仅一次检查单个芯片。

<com.google.android.material.chip.ChipGroup
    app:singleSelection="true"
    ..>


然后,可以使用布局app:chipBackgroundColor中的chip_item_layout.xml属性设置选择器颜色。

就像是:

<com.google.android.material.chip.Chip
    style="@style/Widget.MaterialComponents.Chip.Choice"
    app:chipBackgroundColor="@color/chip_background_color"
    ..>


注意style="@style/Widget.MaterialComponents.Chip.Choice",因为它将芯片定义为android:checkable="true".

chip_background_color是一个选择器,您可以在其中定义不同状态下喜欢的颜色。它是默认选择器,您可以更改它:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <!-- 24% opacity -->
  <item android:alpha="0.24" android:color="?attr/colorPrimary" android:state_enabled="true" android:state_selected="true"/>
  <item android:alpha="0.24" android:color="?attr/colorPrimary" android:state_enabled="true" android:state_checked="true"/>
  <!-- 12% of 87% opacity -->
  <item android:alpha="0.10" android:color="?attr/colorOnSurface" android:state_enabled="true"/>
  <item android:alpha="0.12" android:color="?attr/colorOnSurface"/>

</selector>


所选芯片由您的情况下的颜色定义,即第一行(android:state_selected="true")。

如果您想以编程方式进行操作,只需使用(不在OnCheckedChangeListener中)setChipBackgroundColorResource方法。

chip.setChipBackgroundColorResource(R.color.chip_background_color);


java - 如何使ChipGroup像radioGroup一样工作?-LMLPHP

同样,如果要至少选择一项,可以使用app:selectionRequired属性。此属性需要1.2.0(从1.2.0-alpha02开始)

08-27 15:41