从Jetpack Compose 1.0.0-alpha09
LazyColumn
、LazyColumnForIndexed
和 row 开始,已弃用。如何LazyColumn
使用,在哪里,为什么以及我应该如何使用rememberLazyListState
?
如果您可以提供包含项目、状态和 onClick 侦听器的完整示例,那将非常有责任。
从Jetpack Compose 1.0.0-alpha09
LazyColumn
、LazyColumnForIndexed
和 row 开始,已弃用。如何LazyColumn
使用,在哪里,为什么以及我应该如何使用rememberLazyListState
?
如果您可以提供包含项目、状态和 onClick 侦听器的完整示例,那将非常有责任。
此处的此文档描述了如何使用LazyColumn
而不是LazyColumnFor
.
文档中特别感兴趣的部分:
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.material.Text
val itemsList = (0..5).toList()
val itemsIndexedList = listOf("A", "B", "C")
LazyColumn {
items(itemsList) {
Text("Item is $it")
}
item {
Text("Single item")
}
itemsIndexed(itemsIndexedList) { index, item ->
Text("Item at index $index is $item")
}
}
使用产生一个垂直滚动的列表1.0.0-beta06
。LazyColumn
就像是:
val itemsList = (0..30).toList()
LazyColumn {
items(itemsList) {
Text("Item is $it")
}
}
是一个可以被提升来控制和观察滚动的LazyListState
状态对象。它是通过创建的rememberLazyListState
。
val listState = rememberLazyListState()
它可以用来反应和监听滚动位置和项目布局的变化。
// Provide it to LazyColumn
LazyColumn(state = liststate) {
// Check if the first visible item is past the first item
if (listState.firstVisibleItemIndex > 0){
//...
}
}
或控制滚动位置:
// Remember a CoroutineScope to be able to launch
val coroutineScope = rememberCoroutineScope()
LazyColumn(state = listState) {
// ...
}
lazyListState.animateScrollToItem(lazyListState.firstVisibleItemIndex)
Button (
onClick = {
coroutineScope.launch {
// Animate scroll to item with index=5
listState.animateScrollToItem(index = 5)
}
}
){
Text("Click")
}