繁体   English   中英

如何在 JetpackCompose 的 LazyColumn 中 select 多个项目

[英]How to select multiple items in LazyColumn in JetpackCompose

如何在 LazyColumn 中 select 多个项目并最终将所选项目添加到单独的列表中。

               GettingTags(tagsContent ={ productTags ->

                val flattenList = productTags.flatMap {
                    it.tags_list
                }
                Log.i(TAG,"Getting the flattenList $flattenList")

                LazyColumn{
                    items(flattenList){
                        ListItem(text = {Text(it) })
                        if(selectedTagItem) {
                            Icon(
                                imageVector = Icons.Default.Check,
                                contentDescription = "Selected",
                                tint = Color.Green,
                                modifier = Modifier.size(20.dp)
                            )
                        }
                    }
                }

            })

可变变量 state

var selectedTagItem by remember{
    mutableStateOf(false)
}

首先用选择的变量创建一个 class 来切换

@Immutable
data class MyItem(val text: String, val isSelected: Boolean = false)

然后通过包含所有项目的 mutableStateListOf 创建一个 SnapshotStateList,并且可以在我们用新实例更新任何项目时触发重组,也可以添加或删除项目。 我使用了 ViewModel 但这不是强制性的。 我们可以使用索引切换项目或通过过滤isSelected标志来获取选定项目

class MyViewModel : ViewModel() {

    val myItems = mutableStateListOf<MyItem>()
        .apply {
            repeat(15) {
                add(MyItem(text = "Item$it"))
            }
        }

    fun getSelectedItems() = myItems.filter { it.isSelected }

    fun toggleSelection(index: Int) {

        val item = myItems[index]
        val isSelected = item.isSelected

        if (isSelected) {
            myItems[index] = item.copy(isSelected = false)
        } else {
            myItems[index] = item.copy(isSelected = true)
        }
    }
}

Create LazyColumn with key, key 确保只有更新的项目被重组,如性能文档中所示

@Composable
private fun SelectableLazyListSample(myViewModel: MyViewModel) {

    val selectedItems = myViewModel.getSelectedItems().map { it.text }
    Text(text = "Selected items: $selectedItems")
    LazyColumn(
        verticalArrangement = Arrangement.spacedBy(8.dp),
        contentPadding = PaddingValues(8.dp)
    ) {
        itemsIndexed(
            myViewModel.myItems,
            key = { _, item: MyItem ->
                item.hashCode()
            }
        ) { index, item ->
            Box(
                modifier = Modifier
                    .fillMaxWidth()
                    .background(Color.Red, RoundedCornerShape(8.dp))
                    .clickable {
                        myViewModel.toggleSelection(index)
                    }
                    .padding(8.dp)
            ) {
                Text("Item $index", color = Color.White, fontSize = 20.sp)
                if (item.isSelected) {
                    Icon(
                        modifier = Modifier
                            .align(Alignment.CenterEnd)
                            .background(Color.White, CircleShape),
                        imageVector = Icons.Default.Check,
                        contentDescription = "Selected",
                        tint = Color.Green,
                    )
                }
            }
        }
    }
}

结果

在此处输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM