我目前正在研究可扩展卡的列表。我想关闭除当前选择的所有其他打开的可扩展卡。
我正在使用的数据是一个 Map<String, String>,但是我不知道如何获取对列表中项目列表的引用以循环它并关闭所有其他期望当前的项目。任何建议都会非常有帮助!
val size = viewModel.getQuestionsAndAnswers(groupName).size
Column {
var i = 0
for(question in viewModel.getQuestionsAndAnswers(groupName)) {
ExpandableCard(
title = question.key,
description = question.value,
position = i++,
onExpandableCardClicked = {
// question: how do I loop over all the items in expandable cards and close them.
}
)
}
}