How to do page flip/turn/curl effect in android [duplicate]

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 … Read more

Scale and mirror SVG object

To apply both scale and flip, just list both in your transform: transform=”scale(2,2) scale(-1,1)” Or simply combine the values: transform=”scale(-2,2)” Of course, the issue you have with negative scales is that the objects get flipped across the origin (top left) of the SVG, so they can go off the edge of the document. You need … Read more