Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My app displays search results in a ListView and MapView within a ViewFlipper. The user can toggle between them with a 3D flip animation.

Today I updated to highly anticipated Google Maps Android API v2 and everything went smoothly, except my animation. I'm applying an android.view.animation.Animation to the view very similar to the 3d flip animation described here. Now the width is transformed, so the view of the Map expands from the center, but there is no skewed transformation, it is just flat.

Again, this worked with com.google.android.maps.MapView, but not the new version, com.google.android.gms.maps.MapView. Any suggestions?

share|improve this question

1 Answer

According to this issue the problem is that gmaps relies on SurfaceView to draw. And SurfaceView doesn't support view animations (See "Introducing TextureView").

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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