Android Jetpack使用索引合成懒惰列项目?

iszxjhcz  于 2022-12-09  发布在  Android
关注(0)|答案(1)|浏览(133)

如何在Jetpack编写中访问LazyColumn的当前项索引。

LazyColumn {
  items(viewModel.list) { item ->
      // Here I want to get the index of the item
      Timber.d("item - $item")
  }
}
r6l8ljro

r6l8ljro1#

您可以使用itemsIndexed()扩展函数,该函数提供index

LazyColumn() {
    itemsIndexed(viewModel.list) { index, item ->
        //..
    }
}

相关问题