gpt4 book ai didi

android - 在 Jetpack compose 中绘制动画圆

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

我正在尝试使用 drawCircle 为圆形绘图设置动画。在 Canvas如下:

 drawCircle(
color = Color.Black,
radius = 200f * animatableCircle.value,
center = Offset(size.width / 4, size.height / 4),
style = Stroke(2f)
)

enter image description here
看起来不像是在画圆,而是圆从中心开始按比例缩放。是否可以实现类似于 CircularProgressIndicator的沿半径绘制圆的效果?如图所示?
enter image description here

最佳答案

只是为了完成 @Varsha Kulkarni 发布的代码: (+1)

    val radius = 200f
val animateFloat = remember { Animatable(0f) }
LaunchedEffect(animateFloat) {
animateFloat.animateTo(
targetValue = 1f,
animationSpec = tween(durationMillis = 3000, easing = LinearEasing))
}

Canvas(modifier = Modifier.fillMaxSize()){
drawArc(
color = Color.Black,
startAngle = 0f,
sweepAngle = 360f * animateFloat.value,
useCenter = false,
topLeft = Offset(size.width / 4, size.height / 4),
size = Size(radius * 2 ,
radius * 2),
style = Stroke(2.0f))
}
enter image description here

关于android - 在 Jetpack compose 中绘制动画圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67080502/

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