如何在Jetpack编写中访问LazyColumn的当前项索引。
LazyColumn { items(viewModel.list) { item -> // Here I want to get the index of the item Timber.d("item - $item") } }
r6l8ljro1#
您可以使用itemsIndexed()扩展函数,该函数提供index。
itemsIndexed()
index
LazyColumn() { itemsIndexed(viewModel.list) { index, item -> //.. } }
1条答案
按热度按时间r6l8ljro1#
您可以使用
itemsIndexed()
扩展函数,该函数提供index
。