gpt4 book ai didi

android - Jetpack Compose RC01 中缺少 AnimatedImageVector

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

AnimatedImageVector Jetpack Compose 1.0.0-rc01 中不再存在
还有功能animatedVectorResource不见了。
如何更换它们?

最佳答案

正如您在 release notes 中看到的那样:
enter image description here

AnimatedImageVector was temporarily removed in order to change the module structure


更新:
1.1.0-alpha01 开始, "AnimatedImageVector 和相关的 API 现在在新的 androidx.compose.animation:animation-graphics模块。更多详情请参阅 commit .
    val image = animatedVectorResource(drawableId)
var atEnd by remember { mutableStateOf(false) }
Image(
painter = image.painterFor(atEnd),
contentDescription = "Your content description",
modifier = Modifier.size(64.dp).clickable {
atEnd = !atEnd
}
)

关于android - Jetpack Compose RC01 中缺少 AnimatedImageVector,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68373834/

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