Hello,

I've an application composed of four activity containing each one only
one view and my goal is to put some transition between each couple of
activity. For calling an activity, I use a simple intent code :

Intent i = new Intent();
i.setClass(FirstActivity.current, SecondActivity.class);
startActivity(i);

I've seen this code :
http://code.google.com/android/samples/ApiDemos/src/com/google/android/samples/animation/Transition3d.html
the resulte is nice, but it's a bit complicated and it didn't work in
my case. Does anyone as an idea ?

Have a nice day !

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to