Searched defs:animate (Results 1 - 25 of 65) sorted by relevance

123

/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPreviewPageFrame.java69 public void setSelected(boolean selected, boolean animate) { argument
75 if (animate) {
76 animate().translationZ(mSelectedElevation)
83 if (animate) {
84 animate().translationZ(mNotSelectedElevation)
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DAbstractLayoutTest.java47 animate(v);
56 public void animate(View v) { method in class:AbstractLayoutTest
H A DAlignmentTest.java60 animate(v);
106 public static void animate(View v) { method in class:AlignmentTest
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
H A DAssistOrbContainer.java66 public void show(final boolean show, boolean animate) { argument
70 if (animate) {
77 if (animate) {
108 mScrim.animate()
113 mNavbarScrim.animate()
131 mScrim.animate()
136 mNavbarScrim.animate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarTransitions.java45 applyModeBackground(-1, getMode(), false /*animate*/);
46 applyMode(getMode(), false /*animate*/, true /*force*/);
50 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
51 super.onTransition(oldMode, newMode, animate);
52 applyMode(newMode, animate, false /*force*/);
55 private void applyMode(int mode, boolean animate, boolean force) { argument
58 applyLightsOut(isLightsOut(mode), animate, force);
61 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) { argument
70 navButtons.animate().cancel();
71 lowLights.animate()
[all...]
H A DPhoneStatusBarTransitions.java51 applyModeBackground(-1, getMode(), false /*animate*/);
52 applyMode(getMode(), false /*animate*/);
76 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
77 super.onTransition(oldMode, newMode, animate);
78 applyMode(newMode, animate);
81 private void applyMode(int mode, boolean animate) { argument
88 if (animate) {
H A DBarTransitions.java73 public void transitionTo(int mode, boolean animate) { argument
85 if (DEBUG) Log.d(mTag, String.format("%s -> %s animate=%s",
86 modeToString(oldMode), modeToString(mode), animate));
87 onTransition(oldMode, mMode, animate);
90 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
92 applyModeBackground(oldMode, newMode, animate);
96 protected void applyModeBackground(int oldMode, int newMode, boolean animate) { argument
97 if (DEBUG) Log.d(mTag, String.format("applyModeBackground oldMode=%s newMode=%s animate=%s",
98 modeToString(oldMode), modeToString(newMode), animate));
99 mBarBackground.applyModeBackground(oldMode, newMode, animate);
173 applyModeBackground(int oldMode, int newMode, boolean animate) argument
[all...]
H A DDozeScrimController.java62 public void setDozing(boolean dozing, boolean animate) { argument
71 if (animate) {
H A DKeyguardStatusBarView.java179 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) { argument
181 if (animate) {
198 mSystemIconsSuperContainer.animate()
206 mMultiUserSwitch.animate()
222 mMultiUserSwitch.animate()
238 mSystemIconsSuperContainer.animate().cancel();
239 mMultiUserSwitch.animate().cancel();
H A DPanelBar.java204 public void collapseAllPanels(boolean animate, boolean delayed, float speedUpFactor) { argument
207 if (animate && !pv.isFullyCollapsed()) {
216 if (DEBUG) LOG("collapseAllPanels: animate=%s waiting=%s", animate, waiting);
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DViewGroupBindingAdapter.java39 public static void setAnimateLayoutChanges(ViewGroup view, boolean animate) { argument
40 if (animate) {
/frameworks/base/core/java/android/app/
H A DListFragment.java334 * @param animate If true, an animation will be used to transition to the
337 private void setListShown(boolean shown, boolean animate) { argument
347 if (animate) {
359 if (animate) {
/frameworks/base/core/java/android/widget/
H A DCalendarViewMaterialDelegate.java99 public void setDate(long date, boolean animate, boolean center) { argument
100 mDayPickerView.setDate(date, animate);
H A DAbsSpinner.java269 public void setSelection(int position, boolean animate) { argument
271 boolean shouldAnimate = animate && mFirstPosition <= position &&
288 * @param animate Should the transition be animated
291 void setSelectionInt(int position, boolean animate) { argument
296 layout(delta, animate);
301 abstract void layout(int delta, boolean animate); argument
H A DViewAnimator.java147 * @param animate Whether or not to use the in and out animations, defaults
150 void showOnly(int childIndex, boolean animate) { argument
155 if (animate && mInAnimation != null) {
161 if (animate && mOutAnimation != null && child.getVisibility() == View.VISIBLE) {
177 final boolean animate = (!mFirstTime || mAnimateFirstTime);
178 showOnly(childIndex, animate);
257 * Returns the current animation used to animate a View that enters the screen.
269 * Specifies the animation used to animate a View that enters the screen.
281 * Returns the current animation used to animate a View that exits the screen.
293 * Specifies the animation used to animate
350 setAnimateFirstView(boolean animate) argument
[all...]
H A DCalendarView.java521 * @param animate Whether to animate the scroll to the current date.
530 public void setDate(long date, boolean animate, boolean center) { argument
531 mDelegate.setDate(date, animate, center);
599 void setDate(long date, boolean animate, boolean center); argument
/frameworks/base/libs/hwui/
H A DAnimatorManager.cpp88 bool remove = animator->animate(mContext);
109 uint32_t AnimatorManager::animate(TreeInfo& info) { function in class:android::uirenderer::AnimatorManager
H A DAnimator.cpp114 // Set to 0 so that the animate() basically instantly finishes
126 bool BaseRenderNodeAnimator::animate(AnimationContext& context) { function in class:android::uirenderer::BaseRenderNodeAnimator
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeRenderSession.java108 public Result animate(Object targetObject, String animationName, method in class:BridgeRenderSession
114 mLastResult = mSession.animate(targetObject, animationName, isFrameworkAnimation,
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimationDrawable.java96 /** Whether the drawable should animate when visible. */
268 private void setFrame(int frame, boolean unschedule, boolean animate) { argument
272 mAnimating = animate;
275 if (unschedule || animate) {
278 if (animate) {
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardAbsKeyInputView.java72 resetPasswordText(false /* animate */);
166 resetPasswordText(true /* animate */);
169 protected abstract void resetPasswordText(boolean animate); argument
H A DKeyguardPasswordView.java199 protected void resetPasswordText(boolean animate) { argument
279 animate()
288 animate()
H A DKeyguardPinBasedInputView.java151 protected void resetPasswordText(boolean animate) { argument
152 mPasswordEntry.reset(animate);
206 resetPasswordText(true /* animate */);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcher.java89 public void setKeyguard(boolean keyguard, boolean animate) { argument
92 show(animate);
94 hide(animate);
107 public void show(boolean animate) { argument
112 mStatusBarView.setKeyguardUserSwitcherShowing(true, animate);
113 if (animate) {
119 private void hide(boolean animate) { argument
122 if (animate) {
127 mStatusBarView.setKeyguardUserSwitcherShowing(false, animate);
134 mUserSwitcher.getChildAt(i).animate()
214 hideIfNotSimple(boolean animate) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DListFragment.java276 * @param animate If true, an animation will be used to transition to the
279 private void setListShown(boolean shown, boolean animate) { argument
289 if (animate) {
301 if (animate) {

Completed in 759 milliseconds

123