在 ViewStub 更改之间滑动
我的布局上有一些存根,我想知道是否可以为它们设置动画,以便它们从一个滑到另一个。
非常感谢!
I have a few stubs on my layout and I was wondering whether I could animate them so they slide from one to another.
Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ViewFlipper 作为一个简单的解决方案。只需使用 ViewFlipper 作为 View 的容器,并为其分配滑动动画即可。
例如:
至于动画:
向左滑出:
向右滑入:
可以使用 ViewFlipper .setDisplayedChild() 来进行翻转。
You could use a ViewFlipper for this, as a simple solution. Just have a ViewFlipper as a container for your Views, and assign a sliding animation for it.
For example:
As for the animations:
Slide out left:
Slide in right:
You can use ViewFlipper .setDisplayedChild() to do the flipping.