admin管理员组文章数量:1344955
I have a List<List<Thing>>
and show each list in separate items in my lazyVerticalGrid as they have different layouts. The list can be filtered to less items and should be removed from the LazyVerticalGrid.
I have done two different implementations:
With FilteredList iteration:
modifier = modifier .fillMaxSize(), contentPadding = PaddingValues(horizontal = 16.dp), columns = GridCells.Fixed(MAX_NUMBER_OF_COLUMNS), verticalArrangement = Arrangement.spacedBy(16.dp), horizontalArrangement = Arrangement.spacedBy(17.dp) ) { something -> filteredList.forEach { when (something.section) { Section.1, Section.2 -> { items(items = it.deeds, span = { GridItemSpan(MAX_NUMBER_OF_COLUMNS) }, key = { it.id }) { item -> Something12Composable( item ) } } Section.3 -> { items(items = it.deeds, span = { GridItemSpan(MAX_NUMBER_OF_COLUMNS) }, key = { it.id }) { item -> Something3Composable( item ) } } } } } }
With AnimatedVisibility:
modifier = modifier .fillMaxSize(), contentPadding = PaddingValues(horizontal = 16.dp), columns = GridCells.Fixed(MAX_NUMBER_OF_COLUMNS), verticalArrangement = Arrangement.spacedBy(16.dp), horizontalArrangement = Arrangement.spacedBy(17.dp) ) { something -> unfilteredList.forEach { val isVisible: Boolean = // check if it should be visible when (something.section) { Section.1, Section.2 -> { items(items = it.deeds, span = { GridItemSpan(MAX_NUMBER_OF_COLUMNS) }, key = { it.id }) { item -> AnimatedVisisbility(isVisbile){ Something12Composable( item ) } } } Section.3 -> { items(items = it.deeds, span = { GridItemSpan(MAX_NUMBER_OF_COLUMNS) }, key = { it.id }) { item -> AnimatedVisisbility(isVisbile){ Something3Composable( item ) } } } } } }
Both solutions work with some flaws. I want to have animation when items disappear or appear. The solution #1 has no animation and I haven't been able to add one. The solution #2 has animation but for some reason it adds empty space on top further down the list the items are in the unfilteredList which I can't remove it.
How can I have the animation for the appearing disappearing items without adding unnecessary space?
本文标签: androidAnimating items in a LazyVerticalGridStack Overflow
版权声明:本文标题:android - Animating items in a LazyVerticalGrid - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743773342a2536524.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论