gpt4 book ai didi

Android Sticky - 使用jetpack的页脚撰写: Align footer view to table,直到它达到屏幕尺寸然后固定在底部

转载 作者:行者123 更新时间:2023-12-05 00:14:30 25 4
gpt4 key购买 nike

我想使用 jetpack compose 来实现这一点。

enter image description here

A 是可滚动的行项目列表。当 A 小于屏幕(或父)尺寸时,B(页脚)应放在最后一行的下方。当A + B大于屏幕尺寸时,B固定在底部,A内容可滚动.我想知道是否有简单的方法来实现这一点,使用 compose ConstraintLayout。

最佳答案

有很多方法可以做到这一点,但最有效的方法是使用 Scaffold View 的 bottomBar 属性。

例如:

@Composable
fun RenderContent() {
Scaffold(
topBar = { /* Your app bar goes here */ },
bottomBar = { /* Anything you place in here will be stick to the bottom. */ }
) {
// ... Rest of the content
// Benefits: If you make the content scrollable and
// the `bottomBar` composable remain on top of the content
}
}

关于Android Sticky - 使用jetpack的页脚撰写: Align footer view to table,直到它达到屏幕尺寸然后固定在底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71694590/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com