Android - 如何在iPhone中创建类似删除的摇动效果?
我有 gridView,它有很多图像,单击编辑按钮时,我希望图像像这样摆动: 如何创建iPhone的摆动图标效果?。感谢任何解决此问题的指示。
I have gridView which has lot of images and on clicking the edit button, I want the images to wobble just like : how to create iphone's wobbling icon effect?. Appreciate any pointers to solve this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以首先将摆动效果建模为 Android 提供的动画组合。然后,您可以扩展 ImageView 并使用此动画组合的
AnimationSet
。You can start off by modeling the wobble effect as a combination of Animations that Android provides. You can then extend an ImageView and use an
AnimationSet
of this combination of Animations.您可以创建一个 xml 来定义 ImageView 如何进行动画处理,在引用此 xml 的代码中加载动画,然后应用它。 这里有一个简短的文档。
You can create an xml that defines how the ImageView will be animated, load the animation in code referencing this xml and then apply it. A brief documentation here.