Searched defs:anim (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DAnimatorInflater.java100 Animator anim = null;
117 anim = loadObjectAnimator(c, attrs);
119 anim = loadAnimator(c, attrs, null);
121 anim = new AnimatorSet();
126 createAnimatorFromXml(c, parser, attrs, (AnimatorSet) anim, ordering);
136 childAnims.add(anim);
152 return anim;
159 ObjectAnimator anim = new ObjectAnimator();
161 loadAnimator(context, attrs, anim);
168 anim
182 loadAnimator(Context context, AttributeSet attrs, ValueAnimator anim) argument
[all...]
H A DAnimatorSet.java148 for (Animator anim : items) {
150 builder = play(anim);
152 builder.with(anim);
265 * @param anim The animation that is the dependency used in later calls to the
272 public Builder play(Animator anim) { argument
273 if (anim != null) {
275 return new Builder(anim);
519 public void onAnimationCancel(Animator anim) {
522 public void onAnimationEnd(Animator anim) {
560 final AnimatorSet anim
1036 Builder(Animator anim) argument
1052 with(Animator anim) argument
1072 before(Animator anim) argument
1092 after(Animator anim) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTweener.java40 public Tweener(ObjectAnimator anim) { argument
41 animator = anim;
100 ObjectAnimator anim = null;
102 anim = ObjectAnimator.ofPropertyValuesHolder(object,
104 tween = new Tweener(anim);
108 anim = sTweens.get(object).animator;
113 anim.setInterpolator(interpolator);
117 anim.setStartDelay(delay);
118 anim.setDuration(duration);
120 anim
[all...]
/frameworks/base/core/tests/coretests/src/android/animation/
H A DViewPropertyAnimatorTest.java67 public Canceler(ViewPropertyAnimator anim, FutureWaiter future) { argument
68 mAnim = anim;
H A DEventsTest.java64 public Canceler(Animator anim, FutureWaiter future) { argument
65 mAnim = anim;
92 public Ender(Animator anim, FutureWaiter future) { argument
93 mAnim = anim;
/frameworks/base/core/java/com/android/internal/widget/
H A DDrawableHolder.java75 ObjectAnimator anim = ObjectAnimator.ofFloat(this, property, toValue);
76 anim.setDuration(duration);
77 anim.setStartDelay(delay);
78 anim.setInterpolator(EASE_OUT_INTERPOLATOR);
79 this.addAnimation(anim, replace);
81 return anim;
111 * @param anim
115 private DrawableHolder addAnimation(ObjectAnimator anim, boolean overwrite) { argument
116 if (anim != null)
117 mAnimators.add(anim);
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DAppWindowAnimator.java61 public void setAnimation(Animation anim, boolean initialized) { argument
63 TAG, "Setting animation in " + mAppToken + ": " + anim);
64 animation = anim;
67 anim.restrictDuration(WindowManagerService.MAX_ANIMATION_DURATION);
68 anim.scaleCurrentDuration(mService.mTransitionAnimationScale);
69 int zorder = anim.getZAdjustment();
162 // token's anim layer.
H A DWindowStateAnimator.java181 public void setAnimation(Animation anim) { argument
182 if (localLOGV) Slog.v(TAG, "Setting animation in " + this + ": " + anim);
185 mAnimation = anim;
335 + " anim layer: " + mAnimLayer);
340 Slog.v(TAG, "Policy visibility changing after anim in " + this + ": "
1515 int anim = mPolicy.selectAnimationLw(mWin, transit);
1518 if (anim != 0) {
1519 a = anim != -1 ? AnimationUtils.loadAnimation(mContext, anim) : null;
1541 + " anim
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DNotificationRowLayout.java122 public void setAnimateBounds(boolean anim) { argument
123 mAnimateBounds = anim;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsPanelView.java462 private void updateIcon(ViewHolder h, Drawable icon, boolean show, boolean anim) { argument
466 if (anim) {
468 AnimationUtils.loadAnimation(mContext, R.anim.recent_appear));
475 private void updateThumbnail(ViewHolder h, Bitmap thumbnail, boolean show, boolean anim) { argument
479 // That can't be done until the anim is complete though.
498 if (anim) {
500 AnimationUtils.loadAnimation(mContext, R.anim.recent_appear));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1618 setNotificationIconVisibility(true, com.android.internal.R.anim.fade_in);
1933 mTickerView.startAnimation(loadAnim(com.android.internal.R.anim.push_up_in, null));
1934 mStatusBarContents.startAnimation(loadAnim(com.android.internal.R.anim.push_up_out, null));
1941 mStatusBarContents.startAnimation(loadAnim(com.android.internal.R.anim.push_down_in, null));
1942 mTickerView.startAnimation(loadAnim(com.android.internal.R.anim.push_down_out,
1949 mStatusBarContents.startAnimation(loadAnim(com.android.internal.R.anim.fade_in, null));
1965 Animation anim = AnimationUtils.loadAnimation(mContext, id);
1967 anim.setAnimationListener(listener);
1969 return anim;
2083 void setNotificationIconVisibility(boolean visible, int anim) { argument
[all...]

Completed in 788 milliseconds