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!
Did you try to use ViewFlipper ?
And read this article http://android-coding.blogspot.com/2011/04/viewflipper-with-animation.html.