Searched refs:anim (Results 26 - 50 of 58) sorted by relevance

123

/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DGlobalScreenshot.java550 ValueAnimator anim = ValueAnimator.ofFloat(0f, 1f);
551 anim.setDuration(SCREENSHOT_DROP_IN_DURATION);
552 anim.addListener(new AnimatorListenerAdapter() {
571 anim.addUpdateListener(new AnimatorUpdateListener() {
585 return anim;
589 ValueAnimator anim = ValueAnimator.ofFloat(0f, 1f);
590 anim.setStartDelay(SCREENSHOT_DROP_OUT_DELAY);
591 anim.addListener(new AnimatorListenerAdapter() {
602 anim.setDuration(SCREENSHOT_FAST_DROP_OUT_DURATION);
603 anim
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DMultiPaneChallengeLayout.java113 Animator anim = ObjectAnimator.ofFloat(mScrimView, "alpha", 1f);
114 anim.setDuration(ANIMATE_BOUNCE_DURATION);
115 anim.addListener(new AnimatorListenerAdapter() {
121 anim.start();
137 Animator anim = ObjectAnimator.ofFloat(mScrimView, "alpha", 0f);
138 anim.setDuration(ANIMATE_BOUNCE_DURATION);
139 anim.addListener(new AnimatorListenerAdapter() {
145 anim.start();
H A DPagedView.java1457 AnimatorSet anim = (AnimatorSet) v.getTag();
1458 if (anim != null) {
1459 anim.cancel();
1463 anim = new AnimatorSet();
1464 anim.setDuration(REORDERING_REORDER_REPOSITION_DURATION);
1465 anim.playTogether(
1467 anim.start();
1468 v.setTag(anim);
2050 AnimatorSet anim = new AnimatorSet();
2051 anim
[all...]
H A DSlidingChallengeLayout.java483 Animator anim = ObjectAnimator.ofFloat(mScrimView, "alpha", 1f);
484 anim.setDuration(HANDLE_ANIMATE_DURATION);
485 anim.addListener(new AnimatorListenerAdapter() {
491 anim.start();
509 Animator anim = ObjectAnimator.ofFloat(mScrimView, "alpha", 0f);
510 anim.setDuration(HANDLE_ANIMATE_DURATION);
511 anim.addListener(new AnimatorListenerAdapter() {
517 anim.start();
H A DKeyguardHostView.java965 AnimationUtils.loadAnimation(mContext, R.anim.keyguard_security_fade_in));
967 AnimationUtils.loadAnimation(mContext, R.anim.keyguard_security_fade_out));
1676 R.anim.keyguard_action_assist_enter, R.anim.keyguard_action_assist_exit,
/frameworks/base/services/java/com/android/server/wm/
H A DAppTransition.java285 int anim = 0;
291 anim = ent.array.getResourceId(animAttr, 0);
294 if (anim != 0) {
295 return AnimationUtils.loadAnimation(context, anim);
301 int anim = 0;
307 anim = resId;
310 if (anim != 0) {
311 return AnimationUtils.loadAnimation(context, anim);
490 + " anim=" + a + " nextAppTransition=ANIM_CUSTOM"
497 + " anim
[all...]
H A DWindowStateAnimator.java185 public void setAnimation(Animation anim) { argument
186 if (localLOGV) Slog.v(TAG, "Setting animation in " + this + ": " + anim);
189 mAnimation = anim;
339 + " anim layer: " + mAnimLayer);
344 Slog.v(TAG, "Policy visibility changing after anim in " + this + ": "
1540 int anim = mPolicy.selectAnimationLw(mWin, transit);
1543 if (anim != 0) {
1544 a = anim != -1 ? AnimationUtils.loadAnimation(mContext, anim) : null;
1566 + " anim
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DTicker.java166 AnimationUtils.loadAnimation(context, com.android.internal.R.anim.push_up_in));
168 AnimationUtils.loadAnimation(context, com.android.internal.R.anim.push_up_out));
174 AnimationUtils.loadAnimation(context, com.android.internal.R.anim.push_up_in));
176 AnimationUtils.loadAnimation(context, com.android.internal.R.anim.push_up_out));
H A DPhoneStatusBar.java1663 setNotificationIconVisibility(true, com.android.internal.R.anim.fade_in);
1986 mTickerView.startAnimation(loadAnim(com.android.internal.R.anim.push_up_in, null));
1987 mStatusBarContents.startAnimation(loadAnim(com.android.internal.R.anim.push_up_out, null));
1994 mStatusBarContents.startAnimation(loadAnim(com.android.internal.R.anim.push_down_in, null));
1995 mTickerView.startAnimation(loadAnim(com.android.internal.R.anim.push_down_out,
2002 mStatusBarContents.startAnimation(loadAnim(com.android.internal.R.anim.fade_in, null));
2018 Animation anim = AnimationUtils.loadAnimation(mContext, id);
2020 anim.setAnimationListener(listener);
2022 return anim;
2140 void setNotificationIconVisibility(boolean visible, int anim) { argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarImplBase.java994 Animation anim = AnimationUtils.loadAnimation(mContext, R.anim.abc_slide_in_top);
995 mTopVisibilityView.startAnimation(anim);
1001 Animation anim = AnimationUtils.loadAnimation(mContext, R.anim.abc_slide_in_bottom);
1002 mSplitView.startAnimation(anim);
1017 Animation anim = AnimationUtils.loadAnimation(mContext, R.anim.abc_slide_out_top);
1018 mTopVisibilityView.startAnimation(anim);
1024 Animation anim
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java748 AlphaAnimation anim = new AlphaAnimation(start, end);
749 anim.setInterpolator(DECELERATE_CUBIC);
750 anim.setDuration(ANIM_DUR);
751 return anim;
763 Animation anim = AnimationUtils.loadAnimation(mActivity, fragment.mNextAnim);
764 if (anim != null) {
765 return anim;
802 //int anim = attrs.getResourceId(styleIndex, 0);
805 //if (anim == 0) {
809 //return AnimatorInflater.loadAnimator(mActivity, anim);
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java647 int holdOffset = holdAfter ? 0 : width; // how much of tab to show at the end of anim
656 int holdOffset = holdAfter ? 0 : height; // how much of tab to show at end of anim
672 Animation anim;
674 anim = new TranslateAnimation(dx, dx, dy, dy);
675 anim.setDuration(1000); // plenty of time for transitions
678 anim = new AlphaAnimation(0.5f, 1.0f);
679 anim.setDuration(ANIM_DURATION);
682 anim.setAnimationListener(mAnimationDoneListener);
685 mLeftSlider.startAnimation(anim, anim);
[all...]
/frameworks/base/core/java/android/widget/
H A DAdapterViewAnimator.java275 ObjectAnimator anim = ObjectAnimator.ofFloat(null, "alpha", 0.0f, 1.0f);
276 anim.setDuration(DEFAULT_ANIMATION_DURATION);
277 return anim;
281 ObjectAnimator anim = ObjectAnimator.ofFloat(null, "alpha", 1.0f, 0.0f);
282 anim.setDuration(DEFAULT_ANIMATION_DURATION);
283 return anim;
/frameworks/base/core/tests/coretests/src/android/animation/
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;
H A DViewPropertyAnimatorTest.java67 public Canceler(ViewPropertyAnimator anim, FutureWaiter future) { argument
68 mAnim = anim;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsActivity.java92 R.anim.recents_return_to_launcher_enter,
93 R.anim.recents_return_to_launcher_exit);
H A DRecentsPanelView.java493 private void updateIcon(ViewHolder h, Drawable icon, boolean show, boolean anim) { argument
497 if (anim) {
499 AnimationUtils.loadAnimation(mContext, R.anim.recent_appear));
506 private void updateThumbnail(ViewHolder h, Bitmap thumbnail, boolean show, boolean anim) { argument
510 // That can't be done until the anim is complete though.
529 if (anim) {
531 AnimationUtils.loadAnimation(mContext, R.anim.recent_appear));
/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/core/java/android/appwidget/
H A DAppWidgetHostView.java96 this(context, android.R.anim.fade_in, android.R.anim.fade_out);
103 this(context, android.R.anim.fade_in, android.R.anim.fade_out);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSearchPanelView.java117 R.anim.search_launch_enter, R.anim.search_launch_exit,
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java1758 return R.anim.dock_top_exit;
1761 return R.anim.dock_top_enter;
1768 return R.anim.dock_bottom_exit;
1771 return R.anim.dock_bottom_enter;
1776 return R.anim.dock_right_exit;
1779 return R.anim.dock_right_enter;
1787 return com.android.internal.R.anim.app_starting_exit;
1802 public void selectRotationAnimationLw(int anim[]) { argument
1810 anim[0] = R.anim
[all...]
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DGlowPadView.java134 Tweener anim = get(i);
135 anim.animator.start();
142 Tweener anim = get(i);
143 anim.animator.cancel();
151 Tweener anim = get(i);
152 anim.animator.end();
H A DMultiWaveView.java135 Tweener anim = get(i);
136 anim.animator.start();
143 Tweener anim = get(i);
144 anim.animator.cancel();
152 Tweener anim = get(i);
153 anim.animator.end();
/frameworks/ex/carousel/test/src/com/android/carouseltest/
H A DTaskSwitcherActivity.java133 overridePendingTransition(R.anim.zoom_enter, R.anim.zoom_exit);
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java702 * @param anim The exiting animation resource id is stored in anim[0], the
703 * entering animation resource id is stored in anim[1].
705 public void selectRotationAnimationLw(int anim[]); argument

Completed in 797 milliseconds

123