Lines Matching refs:Animation

28 import android.view.animation.Animation;
31 import android.view.animation.Animation.AnimationListener;
63 * Animation time to show a new candidate view and dismiss the old one.
101 * Animation used by the incoming view when the user navigates to a left
104 private Animation mInAnimPushLeft;
107 * Animation used by the incoming view when the user navigates to a right
110 private Animation mInAnimPushRight;
113 * Animation used by the incoming view when the user navigates to a page
117 private Animation mInAnimPushUp;
120 * Animation used by the incoming view when the user navigates to a page
124 private Animation mInAnimPushDown;
127 * Animation used by the outgoing view when the user navigates to a left
130 private Animation mOutAnimPushLeft;
133 * Animation used by the outgoing view when the user navigates to a right
136 private Animation mOutAnimPushRight;
139 * Animation used by the outgoing view when the user navigates to a page
143 private Animation mOutAnimPushUp;
146 * Animation used by the incoming view when the user navigates to a page
150 private Animation mOutAnimPushDown;
153 * Animation object which is used for the incoming view currently.
155 private Animation mInAnimInUse;
158 * Animation object which is used for the outgoing view currently.
160 private Animation mOutAnimInUse;
440 private Animation createAnimation(float xFrom, float xTo, float yFrom,
443 Animation trans = new TranslateAnimation(Animation.RELATIVE_TO_SELF,
444 xFrom, Animation.RELATIVE_TO_SELF, xTo,
445 Animation.RELATIVE_TO_SELF, yFrom, Animation.RELATIVE_TO_SELF,
447 Animation alpha = new AlphaAnimation(alphaFrom, alphaTo);
462 public void onAnimationEnd(Animation animation) {
469 public void onAnimationRepeat(Animation animation) {
472 public void onAnimationStart(Animation animation) {