小编Lor*_*oli的帖子

如何以编程方式选择 Android 中 ChipGroup 中的默认芯片?

TL;DR - 以编程方式选择作为 Android 中 ChipGroup 子代的默认选择芯片的正确方法是什么?

——

在我的 android 应用程序中,我使用com.google.android.material.chip.Chip样式作为@style/Widget.MaterialComponents.Chip.Choice组件来表示用户可以为给定路线选择的活动选择(想想步行、自行车等)

因为一条路线可以有不同类型的活动,所以我以编程方式将每种类型作为不同的芯片插入到com.google.android.material.chip.ChipGroup. 我还在片段的 onViewCreated() 期间使用以下代码选择默认芯片作为插入列表中的第一个芯片

 private fun setupTypeSelection(types: List<Type>) {
    types.forEach { type ->
        val chip = layoutInflater.inflate(R.layout.chip_type, viewBinding.typeChipGroup, false) as Chip

        chip.tag = type
        /* Init chip text and icon */

        chip.setOnClickListener {
            /* Update selected type */
        }

        if (currentType == null) {
            chip.isSelected = true
            currentType = type
        }

        viewBinding.typeChipGroup.addView(chip)
    }
}
Run Code Online (Sandbox Code Playgroud)

这是 ChipGroup 的布局定义,其中我设置了单选等

chip_group_layout.xml

<com.google.android.material.chip.ChipGroup
      android:id="@+id/type_container"

      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginTop="@dimen/margin_medium" …
Run Code Online (Sandbox Code Playgroud)

android android-layout material-design android-chips

2
推荐指数
1
解决办法
2354
查看次数