views:

80

answers:

1
A: 

I'm pretty sure, that you'd have to use OpenGL for a nice effect. The basic UI framework's capabilities are quite limited, you can only do basic transformations (alpha, translate, rotate) on Views using animations.

Tho it might be possible to mimic something like that in 2D using a FrameLayout, and a custom View in it.

Scythe
Well I found Bitmapmesh in the API demos, so if I can create a mesh, surely I can transform it somehow? The Demo isn't well documented so i'm having difficulty figuring it out, but it can be found here: http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/graphics/BitmapMesh.html
Hamid
I managed to get hold of the mesh, the problem now is creating the mathematical equation to perform the transform on the mesh.
Hamid