在android中缩小启动屏幕中的动画?
我有一个要求,我必须在启动屏幕中提供缩小效果。请提出一些建议。我有一个想法,我们可以将其动画保存在 res/anim 文件夹中并在活动中使用它。
I have a requirement in which i have to give zoom out effect in splash screen. Please Suggest something. I have an idea that we can keep its animation in res/anim folder and use it in activity.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Activity Java 文件中使用此代码:
将此代码放在 res > 下动画> hyperspace_jump.xml
Use this in Activity Java File :
Put this code under res > anim > hyperspace_jump.xml
您可以使用视图动画来获得缩放效果。
在资源下的动画文件夹中创建一个 XML 文件。在 java 文件中,您必须为相应图像设置动画。
这里我的 xml 文件名为 hyperspace_jump。有关更多参考,请点击此处 。
yu can use the view animation in order to get the zoom effect.
create an XML file in the animation folder under resource.And in the java file you must set the animation for the respective image.
Here my xml file name is hyperspace_jump.for more reference click here.