I state that i’m not very experienced in android, and I would like to understand, perhaps with some tutorial, how to implement any scrolling animation between one activity and another. I hope in your help
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 can set up animations (like slide) when you switch between activities like this :
In the
resfolder, create ananimfolderFor example, put two
xmlfiles for a slide effect :slide_in.xml
slide_out.xml
Then on your java code just write this :
If you are testing that on a real device, don’t forget to allow it to play animations (Settings -> Display -> Animations -> All Animations)
Hope it helps ! 🙂