Home | History | Annotate | Download | only in listviewitemanimations

Lines Matching defs:animation

22 import android.animation.Animator;
23 import android.animation.AnimatorListenerAdapter;
24 import android.animation.ObjectAnimator;
32 import android.view.animation.AlphaAnimation;
33 import android.view.animation.Animation;
34 import android.view.animation.Animation.AnimationListener;
35 import android.view.animation.AnimationSet;
36 import android.view.animation.TranslateAnimation;
43 * (Android 2.3), by using the android.view.animation classes on earlier releases.
181 * about animation. A real version should use velocity (via the VelocityTracker class)
193 public void onAnimationEnd(Animator animation) {
324 * new animation APIs.
352 public void onAnimationEnd(Animation animation) {
365 public void onAnimationEnd(Animator animation) {
372 private void setAnimationEndAction(Animation animation, final Runnable endAction) {
374 animation.setAnimationListener(new AnimationListenerAdapter() {
376 public void onAnimationEnd(Animation animation) {
390 public void onAnimationEnd(Animation animation) {
394 public void onAnimationRepeat(Animation animation) {
398 public void onAnimationStart(Animation animation) {