Searched defs:animate (Results 51 - 75 of 99) sorted by relevance

1234

/frameworks/base/core/java/android/widget/
H A DSpinner.java633 void layout(int delta, boolean animate) { argument
691 * there is enough information in the view's layout parameters to animate
H A DCalendarViewLegacyDelegate.java586 public void setDate(long date, boolean animate, boolean center) { argument
591 goTo(mTempDate, animate, true, center);
786 * @param animate Whether to scroll to the given time or just redraw at the
795 private void goTo(Calendar date, boolean animate, boolean setSelected, argument
834 if (animate) {
H A DProgressBar.java1245 doRefreshProgress(rd.id, rd.progress, rd.fromUser, true, rd.animate);
1262 public boolean animate; field in class:ProgressBar.RefreshData
1264 public static RefreshData obtain(int id, int progress, boolean fromUser, boolean animate) { argument
1272 rd.animate = animate;
1282 boolean callBackToApp, boolean animate) {
1287 if (isPrimary && animate) {
1351 boolean animate) {
1353 doRefreshProgress(id, progress, fromUser, true, animate);
1359 final RefreshData rd = RefreshData.obtain(id, progress, fromUser, animate);
1281 doRefreshProgress(int id, int progress, boolean fromUser, boolean callBackToApp, boolean animate) argument
1350 refreshProgress(int id, int progress, boolean fromUser, boolean animate) argument
1399 setProgress(int progress, boolean animate) argument
1404 setProgressInternal(int progress, boolean fromUser, boolean animate) argument
[all...]
H A DRadialTimePickerView.java455 public void setCurrentItemShowing(int item, boolean animate) { argument
458 showHours(animate);
461 showMinutes(animate);
614 public void showHours(boolean animate) { argument
615 showPicker(true, animate);
618 public void showMinutes(boolean animate) { argument
619 showPicker(false, animate);
677 private void showPicker(boolean hours, boolean animate) { argument
684 if (animate) {
H A DStackView.java232 void transformViewForTransition(int fromIndex, int toIndex, final View view, boolean animate) { argument
233 if (!animate) {
254 if (animate) {
274 if (animate) {
302 if (animate) {
315 transformViewAtIndex(toIndex, view, animate);
319 private void transformViewAtIndex(int index, final View view, boolean animate) { argument
351 if (animate) {
424 void showOnly(int childIndex, boolean animate) { argument
425 super.showOnly(childIndex, animate);
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java256 void show(boolean animate) { argument
260 if (animate) {
297 void reset(boolean animate) { argument
308 if (animate) {
564 * Animate them back into place if animate is true.
566 * @param animate
568 public void reset(boolean animate) { argument
569 mLeftSlider.reset(animate);
570 mRightSlider.reset(animate);
571 if (!animate) {
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java378 // if we use the Menu to dismiss an item in landscape, animate up
548 * @param animate whether to animate the snap or not.
551 public void snapChildIfNeeded(final View view, boolean animate, float targetLeft) { argument
564 if (animate) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java107 default void disable(int state1, int state2, boolean animate) { } argument
153 callbacks.disable(mDisable1, mDisable2, false /* animate */);
175 public void disable(int state1, int state2, boolean animate) { argument
180 Message msg = mHandler.obtainMessage(MSG_DISABLE, state1, state2, animate);
195 public void recomputeDisableFlags(boolean animate) { argument
196 disable(mDisable1, mDisable2, animate);
H A DStatusBarIconView.java587 public void setIconColor(int iconColor, boolean animate) { argument
596 if (animate && mCurrentSetColor != NO_COLOR) {
658 setVisibleState(state, true /* animate */, null /* endRunnable */);
661 public void setVisibleState(int state, boolean animate) { argument
662 setVisibleState(state, animate, null);
670 public void setVisibleState(int visibleState, boolean animate, Runnable endRunnable) { argument
680 if (animate) {
H A DActivatableNotificationView.java87 * Scale for the background to animate from when exiting dark mode.
205 makeInactive(true /* animate */);
238 makeInactive(true /* animate */);
373 mBackgroundNormal.animate()
392 public void makeInactive(boolean animate) { argument
396 if (animate) {
582 background.animate()
609 mBackgroundDimmed.animate().cancel();
610 mBackgroundNormal.animate().cancel();
686 makeInactive(false /* animate */);
[all...]
H A DNotificationContentView.java100 // We need to post since we don't want the notification to animate on the very first
344 selectLayout(false /* animate */, mForceSelectNextLayout /* force */);
377 mContractedChild.animate().cancel();
384 mContractedWrapper.setDark(mDark, false /* animate */, 0 /* delay */);
399 mExpandedChild.animate().cancel();
432 mHeadsUpChild.animate().cancel();
455 mAmbientChild.animate().cancel();
488 // We only animate if we are drawn at least once, otherwise the view might animate when
512 selectLayout(mAnimate /* animate */, fals
726 selectLayout(boolean animate, boolean force) argument
799 updateBackgroundColor(boolean animate) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardAffordanceHelper.java444 boolean animate, boolean slowRadiusAnimation, boolean force,
454 updateIconAlpha(view, alpha, animate);
457 private void updateIconAlpha(KeyguardAffordanceView view, float alpha, boolean animate) { argument
460 view.setImageAlpha(alpha, animate);
461 view.setImageScale(scale, animate);
510 public void reset(boolean animate) { argument
512 setTranslation(0.0f, true /* isReset */, animate);
524 public void launchAffordance(boolean animate, boolean left) { argument
532 if (animate) {
443 updateIcon(KeyguardAffordanceView view, float circleRadius, float alpha, boolean animate, boolean slowRadiusAnimation, boolean force, boolean forceNoCircleAnimation) argument
H A DKeyguardBottomAreaView.java691 mIndicationArea.animate()
700 element.animate()
800 public void setDozing(boolean dozing, boolean animate) { argument
812 if (animate) {
H A DScrimController.java220 /** Starts the wakeUpFromAod animation (once screen is on); animate to transparent scrims. */
356 // Always animate color changes if we're seeing the keyguard
361 // Only animate scrim color if the scrim view is actually visible
643 private void updateHeadsUpScrim(boolean animate) { argument
644 updateScrim(animate, mHeadsUpScrim, calculateHeadsUpAlpha(), mCurrentHeadsUpAlpha);
647 private void updateScrim(boolean animate, View scrim, float alpha, float currentAlpha) { argument
656 if (animate || alpha == currentAlpha) {
658 if (animate) {
668 if (animate) {
H A DStatusBarKeyguardViewManager.java304 public void setOccluded(boolean occluded, boolean animate) { argument
323 mStatusBar.updateMediaMetaData(false, animate && !occluded);
333 if (animate && !occluded && mShowing) {
418 // Not ready to animate yet; either because the screen is not on yet,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationChildrenContainer.java319 updateHeaderVisibility(false /* animate */);
761 * @param state the new state we animate to
866 private void updateHeaderVisibility(boolean animate) { argument
876 animate = false;
879 if (animate) {
889 animate = false;
892 if (!animate) {
1169 updateHeaderVisibility(false /* animate */);
1228 updateHeaderVisibility(false /* animate */);
1248 updateHeaderVisibility(true /* animate */);
[all...]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DMagnificationController.java390 * @param animate {@code true} to animate the transition, {@code false}
395 public boolean reset(boolean animate) { argument
397 return resetLocked(animate);
401 private boolean resetLocked(boolean animate) { argument
412 sendSpecToAnimation(spec, animate);
424 * @param animate {@code true} to animate the transition, {@code false}
430 public boolean setScale(float scale, float pivotX, float pivotY, boolean animate, int id) { argument
451 return setScaleAndCenterLocked(scale, centerX, centerY, animate, i
469 setCenter(float centerX, float centerY, boolean animate, int id) argument
494 setScaleAndCenter( float scale, float centerX, float centerY, boolean animate, int id) argument
504 setScaleAndCenterLocked(float scale, float centerX, float centerY, boolean animate, int id) argument
678 resetIfNeeded(boolean animate) argument
747 sendSpecToAnimation(MagnificationSpec spec, boolean animate) argument
851 updateSentSpecMainThread(MagnificationSpec spec, boolean animate) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DAccessibilityController.java644 public void setMagnifiedRegionBorderShownLocked(boolean shown, boolean animate) { argument
649 mWindow.setShown(shown, animate);
738 public void setShown(boolean shown, boolean animate) { argument
744 mAnimationController.onFrameShownStateChanged(shown, animate);
875 public void onFrameShownStateChanged(boolean shown, boolean animate) { argument
877 shown ? 1 : 0, animate ? 1 : 0).sendToTarget();
885 final boolean animate = message.arg2 == 1;
887 if (animate) {
H A DDockedStackDividerController.java341 boolean animate, WindowState imeWin, int imeHeight) {
344 if (animate && !mAnimatingForMinimizedDockedStack) {
432 setMinimizedDockedStack(false /* minimizedDock */, false /* animate */);
453 private void notifyDockedStackMinimizedChanged(boolean minimizedDock, boolean animate, argument
456 if (animate) {
512 notifyDockedStackMinimizedChanged(mMinimizedDock, false /* animate */,
551 checkMinimizeChanged(false /* animate */);
556 checkMinimizeChanged(true /* animate */);
588 private void checkMinimizeChanged(boolean animate) { argument
611 setMinimizedDockedStack(homeVisible && !homeBehind, animate);
339 setAdjustedForIme( boolean adjustedForIme, boolean adjustedForDivider, boolean animate, WindowState imeWin, int imeHeight) argument
627 setMinimizedDockedStack(boolean minimizedDock, boolean animate) argument
761 public boolean animate(long now) { method in class:DockedStackDividerController
[all...]
/frameworks/support/design/src/android/support/design/widget/
H A DCollapsingToolbarLayout.java589 * @param animate whether to animate the visibility change
594 public void setScrimsShown(boolean shown, boolean animate) { argument
596 if (animate) {
H A DTextInputLayout.java431 void updateLabelState(boolean animate) { argument
432 updateLabelState(animate, false);
435 void updateLabelState(final boolean animate, final boolean force) { argument
456 collapseHint(animate);
461 expandHint(animate);
621 mErrorView.animate().cancel();
704 // Only animate if we're enabled, laid out, and we have a different error message
709 private void setError(@Nullable final CharSequence error, final boolean animate) { argument
724 mErrorView.animate().cancel();
730 if (animate) {
1398 collapseHint(boolean animate) argument
1442 expandHint(boolean animate) argument
[all...]
/frameworks/base/core/java/android/transition/
H A DTransition.java57 * on View objects are of interest to it, and also knows how to animate
445 * on all target views, so a Transition that wants to animate from a
711 // Only bother trying to animate with values that differ between start/end
901 animate(animator);
1860 protected void animate(Animator animator) { method in class:Transition
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawableContainer.java150 animate(false);
502 animate(true);
510 animate(true);
568 void animate(boolean schedule) { method in class:DrawableContainer
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java1163 public void setOccluded(boolean isOccluded, boolean animate) { argument
1167 Message msg = mHandler.obtainMessage(SET_OCCLUDED, isOccluded ? 1 : 0, animate ? 1 : 0);
1175 private void handleSetOccluded(boolean isOccluded, boolean animate) { argument
1187 mStatusBarKeyguardViewManager.setOccluded(isOccluded, animate
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerView.java239 startDragging(true /* animate */, false /* touching */);
399 public boolean startDragging(boolean animate, boolean touching) { argument
402 mHandle.setTouching(true, animate);
417 mHandle.setTouching(false, true /* animate */);
435 mHandle.setTouching(false, true /* animate */);
442 mHandle.setTouching(false, true /* animate */);
490 boolean result = startDragging(true /* animate */, true /* touching */);
691 mBackground.animate().scaleY(1.4f);
693 mBackground.animate().scaleX(1.4f);
695 mBackground.animate()
[all...]

Completed in 720 milliseconds

1234