Searched refs:anim (Results 51 - 71 of 71) sorted by relevance

123

/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java1520 final Animator anim = ObjectAnimator.ofInt(
1522 anim.setDuration(CLICK_ANIM_DURATION);
1523 anim.setInterpolator(new AccelerateDecelerateInterpolator());
1524 anim.addListener(new AnimatorListenerAdapter() {
1530 anim.start();
1535 mClickAnimation = anim;
H A DFastScroller.java1430 final Animator anim = ObjectAnimator.ofFloat(views[i], property, value);
1432 builder = animSet.play(anim);
1434 builder.with(anim);
H A DProgressBar.java282 android.R.anim.linear_interpolator); // default to linear interpolator
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsPanelView.java471 private void updateIcon(ViewHolder h, Drawable icon, boolean show, boolean anim) { argument
475 if (anim) {
477 AnimationUtils.loadAnimation(mContext, R.anim.recent_appear));
484 private void updateThumbnail(ViewHolder h, Drawable thumbnail, boolean show, boolean anim) { argument
488 // That can't be done until the anim is complete though.
507 if (anim) {
509 AnimationUtils.loadAnimation(mContext, R.anim.recent_appear));
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java1809 return R.anim.dock_top_exit;
1812 return R.anim.dock_top_enter;
1819 return R.anim.dock_bottom_exit;
1822 return R.anim.dock_bottom_enter;
1827 return R.anim.dock_right_exit;
1830 return R.anim.dock_right_enter;
1838 return com.android.internal.R.anim.app_starting_exit;
1853 public void selectRotationAnimationLw(int anim[]) { argument
1861 anim[0] = R.anim
[all...]
H A DImmersiveModeConfirmation.java84 Animation exit = AnimationUtils.loadAnimation(mContext, R.anim.dock_bottom_exit);
H A DPhoneWindow.java1410 Animation anim = AnimationUtils.loadAnimation(getContext(), com.android.internal.R.anim.fade_out);
1411 anim.setDuration(1000);
1414 spinnyProgressBar.startAnimation(anim);
1419 horizontalProgressBar.startAnimation(anim);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1712 setNotificationIconVisibility(true, com.android.internal.R.anim.fade_in);
1948 final boolean anim = (mScreenOn == null || mScreenOn) && windowState != WINDOW_STATE_HIDDEN;
1949 transitions.transitionTo(mode, anim);
2094 mTickerView.startAnimation(loadAnim(com.android.internal.R.anim.push_up_in, null));
2095 mStatusBarContents.startAnimation(loadAnim(com.android.internal.R.anim.push_up_out, null));
2102 mStatusBarContents.startAnimation(loadAnim(com.android.internal.R.anim.push_down_in, null));
2103 mTickerView.startAnimation(loadAnim(com.android.internal.R.anim.push_down_out,
2111 .startAnimation(loadAnim(com.android.internal.R.anim.fade_in, null));
2129 Animation anim = AnimationUtils.loadAnimation(mContext, id);
2131 anim
2271 setNotificationIconVisibility(boolean visible, int anim) argument
[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/base/services/java/com/android/server/wm/
H A DWindowStateAnimator.java177 public void setAnimation(Animation anim) { argument
178 if (localLOGV) Slog.v(TAG, "Setting animation in " + this + ": " + anim);
181 mAnimation = anim;
331 + " anim layer: " + mAnimLayer);
336 Slog.v(TAG, "Policy visibility changing after anim in " + this + ": "
1545 int anim = mPolicy.selectAnimationLw(mWin, transit);
1548 if (anim != 0) {
1549 a = anim != -1 ? AnimationUtils.loadAnimation(mContext, anim) : null;
1571 + " anim
[all...]
H A DWindowManagerService.java1353 + " anim layer: " + imw.mWinAnimator.mAnimLayer);
1360 + " anim layer: " + cw.mWinAnimator.mAnimLayer);
1369 + " anim layer: " + imw.mWinAnimator.mAnimLayer);
1575 + " anim=" + ((wallpaperTarget != null && wallpaperTarget.mAppToken != null)
1834 + wallpaper + " anim layer: " + wallpaper.mWinAnimator.mAnimLayer);
1923 + wallpaper + " anim layer: " + wallpaper.mWinAnimator.mAnimLayer);
3646 int anim[] = new int[2];
3648 anim[0] = anim[1] = 0;
3650 mPolicy.selectRotationAnimationLw(anim);
[all...]
/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.java718 * @param anim The exiting animation resource id is stored in anim[0], the
719 * entering animation resource id is stored in anim[1].
721 public void selectRotationAnimationLw(int anim[]); argument
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDocumentsActivity.java813 private void onCurrentDirectoryChanged(int anim) { argument
818 mDirectoryContainer.setDrawDisappearingFirst(anim == ANIM_DOWN);
825 DirectoryFragment.showRecentsOpen(fm, anim);
836 DirectoryFragment.showSearch(fm, root, mState.currentSearch, anim);
839 DirectoryFragment.showNormal(fm, root, cwd, anim);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java666 Animator anim = AnimatorInflater.loadAnimator(context, animationId);
667 if (anim != null) {
668 anim.setTarget(targetObject);
670 new PlayAnimationThread(anim, this, animationName, listener).start();
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DProgressBarICS.java146 final int resID = a.getResourceId(13, android.R.anim.linear_interpolator);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardHostView.java1718 R.anim.keyguard_action_assist_enter, R.anim.keyguard_action_assist_exit,
/frameworks/base/services/java/com/android/server/am/
H A DActivityStack.java1466 boolean anim = true;
1472 anim = false;
1484 anim = false;
1499 anim = false;
1505 if (anim) {
H A DActivityManagerService.java16052 mWindowManager.startFreezingScreen(R.anim.screen_user_exit,
16053 R.anim.screen_user_enter);
/frameworks/base/tools/aapt/
H A DResource.cpp174 return type == "anim" || type == "animator" || type == "interpolator"
945 ASSIGN_IT(anim);
968 !applyFileOverlay(bundle, assets, &anims, "anim") ||
1018 err = makeFileResources(bundle, assets, &table, anims, "anim");
1138 ResourceDirIterator it(anims, String8("anim"));

Completed in 699 milliseconds

123