reiley
reiley

Reputation: 3761

ImageView swipe animation from left to right & vice-versa

How Can I implement the swipe animation from left-to-right & right-to-left on user touch's gesture.

Similar behavior is present in Tinder android application.

Upvotes: 2

Views: 2312

Answers (1)

user2696372
user2696372

Reputation: 86

You can achieve this using the ViewPager in the Android API.

http://developer.android.com/training/animation/screen-slide.html

It's pretty well documented on there, but possibly a little too involved for me to post a solution on here as such., especially without your code. Just put the ImageViews inside your Fragments.

Upvotes: 2

Related Questions