How to prepare curve translate animation for android?
问题 There are 4 types of animations in android - rotate, alpha,scale and translate. I want to prepare curved translate animation. Is it possible.? 回答1: What Android version do you use? Since API level 11 you can use custom Animators which can easily implement your curve translation. If you use a version below that there is afaik only the possibility to manually concatenate multiple linear translations using the translate animation and setting animation listeners EDIT: Example: View view; animator