android 用动画启动 Activity
是否可以在运行时向活动添加动画,以便当我启动活动时,它会以我的动画开始?我想根据某些视图的位置在运行时为动画指定一些参数。我已成功添加动画广告,但动画是在 xml 文件中定义的,因此我无法编辑动画中的数字。可以这样做吗?
Is it possible to ad an animation to an activity at runtime so when I start the activity, it starts with my animation? I want to specify some parameters to animation at runtime depending on some view's position. I've managed to ad an animation, but the animation was defined in a xml file so I was not able to edit the numbers from animation. Is it possible to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在代码中而不是 XML 文件中定义动画。例如这里解释了如何做到这一点。然后您可以使用变量在运行时更改内容。
You could define your animation in code instead of the XML file. For example here it is explained how to do that. THen you can change things at runtime by using variables.
是的,
您始终可以使用 Android Activity 生命周期来执行此操作,在这种情况下,您可以在 onCreate 函数中执行动画。
干杯。
Yes,
you can always use the android activity life cycle to do this, in this case you can perform your animation in the onCreate function.
Cheers.