How to do page flipping/turning or curl animation in android ? Is is possible with cocos2d. Please provide any links or example if you know.

link|improve this question

77% accept rate
possible duplicate of Implement page curl on android? – derobert Dec 13 '11 at 17:20
feedback

2 Answers

up vote 10 down vote accepted

You can use ViewFlipper to flip between views. http://developer.android.com/reference/android/widget/ViewFlipper.html

Simple ViewAnimator that will animate between two or more views that have been added to it. Only one child is shown at a time. If requested, can automatically flip between each child at a regular interval.

It is possible to assign different animations. See here for examples or here on SO.

But it depends on what actually you want to flip and animate. You can draw different shapes and drag or animate them.

link|improve this answer
-1: Broken links all around. – Gili Feb 11 at 22:17
2  
Sorry for that, I updated my answer ;) – ArtWorkAD Feb 12 at 11:45
feedback

Checkout the Android Page Curl project:

It has some very nice code for both automated page flips (touch the screen and the page flip animation plays) as manual page flips where the flip actually follows your finger.

link|improve this answer
+1 Very useful for me. Thanks – SpK Apr 13 at 5:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.