Reputation: 185
I was hoping to have the following effect in my android app, a transition from Activity to Activity...
When you click to move onto the next Activity, ... the App waits until that next activity is ready to load (I.e., onResume of the next Activity,...) then it slides the old activity out while sliding the new activity in. By this I mean, the image of both activities is present at the same time.
Is this possible? It seems like this would require an INSANE restructuring of my app.
PS, my app has a tab bar which is present at the top of all activities.
Upvotes: 0
Views: 885
Reputation: 6702
Have a look at overridePendingTransition
method. It is easy to use, but requires minimum API level 5.
Upvotes: 1