Lines Matching refs:animator
19 import android.animation.Animator;
238 private volatile Animator mAnimator = null;
242 public void onAnimationEnd(Animator animation) {
272 public void setAnimator(Animator animation) {
284 public void onAnimationStart(Animator animation) {
289 public void onAnimationCancel(Animator animation) {
294 public void onAnimationEnd(Animator animation) {
3753 // This is the only animator that can return null, so check it
3778 // Sets up an animator for changing the height of allday events
3795 // Set up the animator with the calculated values
3796 ObjectAnimator animator = ObjectAnimator.ofInt(this, "animateDayEventHeight",
3798 animator.setDuration(ANIMATION_DURATION);
3799 return animator;
3802 // Sets up an animator for changing the height of the allday area
3814 // Set up the animator with the calculated values
3815 ObjectAnimator animator = ObjectAnimator.ofInt(this, "animateDayHeight",
3817 animator.setDuration(ANIMATION_DURATION);
3819 animator.addListener(new AnimatorListenerAdapter() {
3821 public void onAnimationEnd(Animator animation) {
3831 return animator;
3834 // setter for the 'box +n' alpha text used by the animator
3840 // setter for the height of the allday area used by the animator
3847 // setter for the height of allday events used by the animator