Home | History | Annotate | Download | only in cts

Lines Matching defs:animation

17 package android.view.animation.cts;
29 import android.view.animation.AlphaAnimation;
30 import android.view.animation.Transformation;
61 AlphaAnimation animation = new AlphaAnimation(mContext, null);
62 assertFalse(animation.willChangeBounds());
67 AlphaAnimation animation = new AlphaAnimation(0.0f, 0.5f);
68 assertFalse(animation.willChangeTransformationMatrix());
73 MyAlphaAnimation animation = new MyAlphaAnimation(0.0f, 1.0f);
77 animation.applyTransformation(0.0f, transformation);
80 animation.applyTransformation(0.5f, transformation);
83 animation.applyTransformation(1.0f, transformation);
86 animation = new MyAlphaAnimation(0.2f, 0.9f);
90 animation.applyTransformation(0.0f, transformation);
93 animation.applyTransformation(0.5f, transformation);
96 animation.applyTransformation(1.0f, transformation);