Is there any animation logic for deleting an icon or image by iphone style like wiggle(shake) or dancing?
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 could easily do this by implementing a TanslateAnimation and just having it repeat a few times. Translate animations are for moving things around on the screen in a 2d plane. So just make the x coordinate modulate between a given interval. You can also implement an AnimationSet to group a few animations together such as two translate animations one to move it right one to move it left.