在 Compose 中动画化矢量可以通过几种不同的方式实现。您可以使用以下任何一种方式
AnimatedVectorDrawable
文件格式ImageVector
与 Compose 动画 API 配合使用,例如在这篇 Medium 文章中- 第三方解决方案,例如 Lottie
动画矢量图形(实验性)
要使用 AnimatedVectorDrawable
资源,请使用 animatedVectorResource
加载图形文件,并传入一个 boolean
值来切换图形的起始和结束状态,从而执行动画。
@Composable fun AnimatedVectorDrawable() { val image = AnimatedImageVector.animatedVectorResource(R.drawable.ic_hourglass_animated) var atEnd by remember { mutableStateOf(false) } Image( painter = rememberAnimatedVectorPainter(image, atEnd), contentDescription = "Timer", modifier = Modifier.clickable { atEnd = !atEnd }, contentScale = ContentScale.Crop ) }
有关图形文件格式的更多信息,请参阅 动画化图形。
为您推荐
- 注意:当 JavaScript 关闭时,显示链接文本
- 加载图像 {:#loading-images}