如何在布局内滑动(推送)子视图?

发布于 2024-12-01 06:42:29 字数 679 浏览 2 评论 0原文

我计划在布局内构建带有滑动子视图的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

川水往事 2024-12-08 06:42:29

是的,有可能。只需使用 ObjectAnimator 即可。

ObjectAnimator anim = ObjectAnimator.ofInt(view2, "height", 0, 100);
anim.setDuration(1000);
anim.start();

请记住,您可以在 API 级别 11 及更高版本中使用它。

但是如果您需要在 1.0 之前的所有平台版本上使用它,请使用 NineOldAndroids图书馆。

Yes, it possible. Just use ObjectAnimator.

ObjectAnimator anim = ObjectAnimator.ofInt(view2, "height", 0, 100);
anim.setDuration(1000);
anim.start();

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文