Reputation: 364
This question is about performance. My goal is to make an animation which flips view vertically. What is better, to flip the actual View inflated from XML, or make a snapshot of that view and flip bitmap image?
One of the ways to flip is described here: http://2cupsoftech.wordpress.com/2012/09/18/3d-flip-between-two-view-or-viewgroup-on-android/
But how performant is it?? And isn't better to flip a bitmap?
Upvotes: 1
Views: 9942