使用动画从项目活动中的列表切换项目

发布于 2024-12-12 04:52:04 字数 430 浏览 0 评论 0原文

我有一份包含一些物品的清单。

在某些“项目详细信息”活动中,我希望能够通过滑动切换项​​目(向左表示上一个项目,向右表示下一个项目),并具有与默认活动过渡相同的动画(转到上一个项目时相反)。

我尝试使用滑动检测,使用列表中项目的位置再次调用项目活动,并调用 overridePendingTransition 在转到上一个项目时设置动画,但这很不优雅,我有 一些问题

我怎样才能在停留在活动的同一个实例中时实现这一点(即不再次启动活动)?滑动时我可以加载新数据,但我不知道如何获取动画。

欢迎任何帮助。谢谢!

I've got a list with some items.

On some "item detail" activity I'd like to be able to switch item on swipe (left for previous item, right for next item), with the same animation as the default activity transition (reversed when going to previous item).

I tried it with swipe detection, calling the item activity again with the position of the item in the list and calling overridePendingTransition to set the animation when going to previous item, but this is inelegant and I had some issues.

How can I achieve this while staying in the same instance of the activity (i.e. not starting the activity again)? On swipe I could just load the new data, but I don't know how I can get the animation.

Any help welcome. Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

橘虞初梦 2024-12-19 04:52:04

您可以使用 android ViewPager 来实现此目的。要使用它,您需要将兼容性库包含在应用程序中。它允许在视图之间滑动。

这是一个示例。

You can use the android ViewPager for this. To use it you need to include the compatability library with the application. It allows to swipe between views.

This is an example for it.

愁以何悠 2024-12-19 04:52:04

您尝试过使用 ViewFlipper 吗?
并阅读这篇文章 http://android-coding.blogspot.com /2011/04/viewflipper-with-animation.html

Did you try to use ViewFlipper ?
And read this article http://android-coding.blogspot.com/2011/04/viewflipper-with-animation.html.

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