Loading packages/SystemUI/animation/src/com/android/systemui/animation/RemoteAnimationRunnerCompat.java +11 −0 Original line number Diff line number Diff line Loading @@ -245,6 +245,17 @@ public abstract class RemoteAnimationRunnerCompat extends IRemoteAnimationRunner runner.onAnimationCancelled(); finishRunnable.run(); } @Override public void onTransitionConsumed(IBinder transition, boolean aborted) throws RemoteException { // Notify the remote runner that the transition has been canceled if the transition // was merged into another transition or aborted synchronized (mFinishRunnables) { mFinishRunnables.remove(transition); } runner.onAnimationCancelled(); } }; } Loading Loading
packages/SystemUI/animation/src/com/android/systemui/animation/RemoteAnimationRunnerCompat.java +11 −0 Original line number Diff line number Diff line Loading @@ -245,6 +245,17 @@ public abstract class RemoteAnimationRunnerCompat extends IRemoteAnimationRunner runner.onAnimationCancelled(); finishRunnable.run(); } @Override public void onTransitionConsumed(IBinder transition, boolean aborted) throws RemoteException { // Notify the remote runner that the transition has been canceled if the transition // was merged into another transition or aborted synchronized (mFinishRunnables) { mFinishRunnables.remove(transition); } runner.onAnimationCancelled(); } }; } Loading