Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Start an activity using a 3d flip animation

I'm trying to start an activity and create the transition as a 3d flip (as many have stated exactly like on the IPhone), unfortunately I haven't found a satisfying answer yet and I am stuck.

I've implemented http://www.inter-fuser.com/2009/08/android-animations-3d-flip.html for the whole layout so that now when pressing a certain button the layouts are flipped, but since it refers to layout that are in activities which weren't loaded, they don't fill all their items and data (an expandable list view for example).

But when i call startActivity() after the flip the activity is created which of course hides the framelayout container on the caller activity - so i can't flip back... (I've used the overridePendingTransition but imho it shouldn't matter).

I could really use your help am losing my mind... Thanks!

like image 570
garkler Avatar asked Oct 10 '22 10:10

garkler


1 Answers

Sorry you can't do this -- the window manager currently only supports 2d animations.

like image 144
hackbod Avatar answered Oct 30 '22 01:10

hackbod