Searched defs:endRunnable (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCrossFadeHelper.java30 public static void fadeOut(final View view, final Runnable endRunnable) { argument
39 if (endRunnable != null) {
40 endRunnable.run();
H A DTransformableView.java45 void transformTo(TransformableView notification, Runnable endRunnable); argument
H A DViewTransformationHelper.java67 public void transformTo(final TransformableView notification, final Runnable endRunnable) { argument
86 if (endRunnable != null) {
87 endRunnable.run();
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
H A DAssistOrbContainer.java114 private void startExitAnimation(final Runnable endRunnable) { argument
116 if (endRunnable != null) {
117 endRunnable.run();
133 .withEndAction(endRunnable);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DHybridNotificationView.java139 public void transformTo(TransformableView notification, Runnable endRunnable) { argument
140 mTransformationHelper.transformTo(notification, endRunnable);
H A DNotificationHeaderViewWrapper.java297 public void transformTo(TransformableView notification, Runnable endRunnable) { argument
298 mTransformationHelper.transformTo(notification, endRunnable);
H A DNotificationViewWrapper.java130 public void transformTo(TransformableView notification, Runnable endRunnable) { argument
132 CrossFadeHelper.fadeOut(mView, endRunnable);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
H A DAppearAnimationUtils.java93 Runnable endRunnable = null;
95 endRunnable = finishListener;
103 mAppearing, mInterpolator, endRunnable);
121 Runnable endRunnable = null;
123 endRunnable = finishListener;
127 mAppearing, mInterpolator, endRunnable);
185 boolean appearing, Interpolator interpolator, final Runnable endRunnable) {
211 if (endRunnable != null) {
215 endRunnable.run();
184 createAnimation(final View view, long delay, long duration, float translationY, boolean appearing, Interpolator interpolator, final Runnable endRunnable) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDozeScrimController.java163 startScrimAnimation(inFront, target, duration, interpolator, null /* endRunnable */);
167 Interpolator interpolator, final Runnable endRunnable) {
190 if (endRunnable != null) {
191 endRunnable.run();
166 startScrimAnimation(final boolean inFront, float target, long duration, Interpolator interpolator, final Runnable endRunnable) argument
H A DStatusBarKeyguardViewManager.java375 animateScrimControllerKeyguardFadingOut(delay, duration, null /* endRunnable */,
380 final Runnable endRunnable, boolean skipFirstFrame) {
385 if (endRunnable != null) {
386 endRunnable.run();
379 animateScrimControllerKeyguardFadingOut(long delay, long duration, final Runnable endRunnable, boolean skipFirstFrame) argument
H A DPhoneStatusBar.java1238 Runnable endRunnable = null;
1240 endRunnable = animationFinishAction;
1242 mStackScroller.dismissViewAnimated(view, endRunnable, totalDelay, 260);
4110 * @param endRunnable the runnable to be run when the transition is done
4113 Runnable endRunnable) {
4115 mLaunchTransitionEndRunnable = endRunnable;
4112 fadeKeyguardAfterLaunchTransition(final Runnable beforeFading, Runnable endRunnable) argument
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java763 Interpolator interpolator, final CellState state, final Runnable endRunnable) {
772 if (endRunnable != null) {
776 endRunnable.run();
762 startRadiusAnimation(float start, float end, long duration, Interpolator interpolator, final CellState state, final Runnable endRunnable) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java1191 public void dismissViewAnimated(View child, Runnable endRunnable, int delay, long duration) { argument
1192 mSwipeHelper.dismissChild(child, 0, endRunnable, delay, true, duration,

Completed in 315 milliseconds