如何在布局内滑动(推送)子视图?
我计划在布局内构建带有滑动子视图的 UI。
+--------------+ +--------------+ +--------------+
| view1 | | view1 | | view1 |
+--------------+ +--------------+ +--------------+
| | +--------------+ | view2 |
| view3 | <=> | | <=> +--------------+
| | | view3 | | |
| | | | | view3 |
| | | | | |
+--------------+ +--------------+ +--------------+
Fe view2 必须从 view1 后面以动画方式滑动,将 view3 向下推。
这个可以实现吗?
先感谢您。
I'm planning to construct UI with sliding child views inside layout.
+--------------+ +--------------+ +--------------+
| view1 | | view1 | | view1 |
+--------------+ +--------------+ +--------------+
| | +--------------+ | view2 |
| view3 | <=> | | <=> +--------------+
| | | view3 | | |
| | | | | view3 |
| | | | | |
+--------------+ +--------------+ +--------------+
F.e. view2 must slide with animation from behind view1 pushing view3 down.
Is it possible to implement this?
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,有可能。只需使用 ObjectAnimator 即可。
请记住,您可以在 API 级别 11 及更高版本中使用它。
但是如果您需要在 1.0 之前的所有平台版本上使用它,请使用 NineOldAndroids图书馆。
Yes, it possible. Just use ObjectAnimator.
Keep in mind that you can use it with API level 11 and up.
But if you need it for all version of the platform back to 1.0 use NineOldAndroids library.