admin管理员组文章数量:1344334
I have a Column inside the LazyColumn with some elements like this:
LazyColumn {
item {
...
}
item {
...
}
item {
...
}
item {
HorizontalPager() {
if(page == 1) {
Button(onClick = {})
Column {
itemsList.forEach {
SomeComponent(it)
}
}
}
....
}
}
}
What would be the best way to scroll to the specific SomeComponent item inside the column? I was trying with lazyListState.animateScrollToItem
but the list has only 4 elements so I can scroll only to the beginning of the Column.
I have a Column inside the LazyColumn with some elements like this:
LazyColumn {
item {
...
}
item {
...
}
item {
...
}
item {
HorizontalPager() {
if(page == 1) {
Button(onClick = {})
Column {
itemsList.forEach {
SomeComponent(it)
}
}
}
....
}
}
}
What would be the best way to scroll to the specific SomeComponent item inside the column? I was trying with lazyListState.animateScrollToItem
but the list has only 4 elements so I can scroll only to the beginning of the Column.
1 Answer
Reset to default 0You can try to add the SomeComponent
Composables to the LazyColumn
directly:
LazyColumn {
item {
//...
}
item {
//...
}
item {
//...
}
item {
Button(onClick = {})
}
items(itemsList) {
SomeComponent(it)
}
}
Then, you can use
lazyListState.animateScrollToItem(4 + itemIndexInNestedList)
to scroll to a certain SomeComponent
.
本文标签: androidScrolling Column inside LazyColumnStack Overflow
版权声明:本文标题:android - Scrolling Column inside LazyColumn - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743767651a2535537.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论