i have activity1 and activity2 and i want to go activity2 from activity1 using rotation animation if do you have any code so please send me……
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You cannot specify animation for Activity transition, it is not supported by Android.
You can however specify View transitions (like rotation).
In the SDK there is a sample:
c:\android-sdk-windows\samples\android-7\ApiDemos\src\com\example\android\apis\animation\Rotate3dAnimation.javaWhich performs a 3D rotation when switching, you can adapt it for your needs.