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.java59 public void setAnimation(Animation anim, boolean initialized) { argument
61 TAG, "Setting animation in " + mAppToken + ": " + anim);
62 animation = anim;
65 anim.restrictDuration(WindowManagerService.MAX_ANIMATION_DURATION);
66 anim.scaleCurrentDuration(mService.mTransitionAnimationScale);
67 int zorder = anim.getZAdjustment();
158 // token's anim layer.
H A DWindowStateAnimator.java156 public void setAnimation(Animation anim) { argument
157 if (localLOGV) Slog.v(TAG, "Setting animation in " + this + ": " + anim);
160 mAnimation = anim;
312 + " anim layer: " + mAnimLayer);
317 Slog.v(TAG, "Policy visibility changing after anim in " + this + ": "
1399 int anim = mPolicy.selectAnimationLw(mWin, transit);
1402 if (anim != 0) {
1403 a = AnimationUtils.loadAnimation(mContext, anim);
1425 + " anim=" + 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.java527 private void updateIcon(ViewHolder h, Drawable icon, boolean show, boolean anim) { argument
531 if (anim) {
533 AnimationUtils.loadAnimation(mContext, R.anim.recent_appear));
540 private void updateThumbnail(ViewHolder h, Bitmap thumbnail, boolean show, boolean anim) { argument
544 // That can't be done until the anim is complete though.
563 if (anim) {
565 AnimationUtils.loadAnimation(mContext, R.anim.recent_appear));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1126 setNotificationIconVisibility(false, com.android.internal.R.anim.fade_out);
1130 setNotificationIconVisibility(true, com.android.internal.R.anim.fade_in);
1326 setNotificationIconVisibility(true, com.android.internal.R.anim.fade_in);
1348 Slog.d(TAG, "resetting last anim time=" + mAnimLastTimeNanos, t);
1898 mTickerView.startAnimation(loadAnim(com.android.internal.R.anim.push_up_in, null));
1899 mIcons.startAnimation(loadAnim(com.android.internal.R.anim.push_up_out, null));
1906 mIcons.startAnimation(loadAnim(com.android.internal.R.anim.push_down_in, null));
1907 mTickerView.startAnimation(loadAnim(com.android.internal.R.anim.push_down_out,
1914 mIcons.startAnimation(loadAnim(com.android.internal.R.anim.fade_in, null));
1915 mTickerView.startAnimation(loadAnim(com.android.internal.R.anim
2046 setNotificationIconVisibility(boolean visible, int anim) argument
[all...]

Completed in 135 milliseconds