最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

android - Scrolling Column inside LazyColumn - Stack Overflow

programmeradmin1浏览0评论

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.

Share Improve this question edited 4 hours ago falsetto asked 21 hours ago falsettofalsetto 7892 gold badges11 silver badges35 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You 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.

发布评论

评论列表(0)

  1. 暂无评论