gpt4 book ai didi

android - 如何使用 Compose 渲染普通的 android ProgressBar?

转载 作者:行者123 更新时间:2023-12-03 13:28:04 25 4
gpt4 key购买 nike

我的应用程序需要一个 ProgressBar,我正在尝试使用 Jetpack Compose 来实现它,所以要么我需要一个内置的 ProgressBar 支持(我没有找到它),要么应该有一种机制来使用 Compose 显示普通的 Android Widget。这有可能吗?

最佳答案

当然,我们在 Jetpack Compose 中有进度条:
循环进度指标:将进度条显示为圆形。这是不确定的。以样式中的原色为主题。另一个变体是确定的,它在参数中取得进展为 Float (0.0f - 1.0f)
示例:

// Indeterminate
CircularProgressIndicator()

// Determinate
CircularProgressIndicator(progress = 0.5f)
LinearProgressIndicator:将进度条显示为线。这是不确定的。以样式中的原色为主题。另一个变体是确定的,它在参数中取得进展为 Float (0.0f - 1.0f)
示例:
// Indeterminate
LinearProgressIndicator()

// Determinate
LinearProgressIndicator(progress = 0.5f)

关于android - 如何使用 Compose 渲染普通的 android ProgressBar?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59825217/

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