使用动画从项目活动中的列表切换项目
我有一份包含一些物品的清单。
在某些“项目详细信息”活动中,我希望能够通过滑动切换项目(向左表示上一个项目,向右表示下一个项目),并具有与默认活动过渡相同的动画(转到上一个项目时相反)。
我尝试使用滑动检测,使用列表中项目的位置再次调用项目活动,并调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 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.
您尝试过使用 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.