/frameworks/base/core/java/android/view/ |
H A D | IDockedStackListener.aidl | 41 * @param minimized Whether the docked stack is currently minimized. 42 * @param animDuration The duration of the animation for changing the minimized state. 46 void onDockedStackMinimizedChanged(boolean minimized, long animDuration, 50 * Called when window manager decides to adjust the divider for IME. Like the minimized state, 53 * @param minimized Whether the stacks are currently adjusted for the IME
|
H A D | IRecentsAnimationController.aidl | 64 * Informs the system that the primary split-screen stack should be minimized. 66 void setSplitScreenMinimized(boolean minimized);
|
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/ |
H A D | RecentsAnimationControllerCompat.java | 64 public void setSplitScreenMinimized(boolean minimized) { argument 66 mAnimationController.setSplitScreenMinimized(minimized);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/ |
H A D | Divider.java | 127 private void updateMinimizedDockedStack(final boolean minimized, final long animDuration, argument 133 if (mMinimized != minimized) { 134 mMinimized = minimized; 137 mView.setMinimizedDockStack(minimized, animDuration, isHomeStackResizable); 139 mView.setMinimizedDockStack(minimized, isHomeStackResizable); 191 public void onDockedStackMinimizedChanged(boolean minimized, long animDuration, argument 194 updateMinimizedDockedStack(minimized, animDuration, isHomeStackResizable);
|
H A D | DividerView.java | 100 * How much the background gets scaled when we are in the minimized dock state. 317 // Save the current target if not minimized once attached to window 377 // Set the previous position ratio before minimized state after attaching this divider 646 // Reset minimized divider position after unminimized state animation finishes 759 public void setMinimizedDockStack(boolean minimized, boolean isHomeStackResizable) { argument 762 if (!minimized) { 776 mMinimizedShadow.setAlpha(minimized ? 1f : 0f); 778 mHandle.setAlpha(minimized ? 0f : 1f); 779 mDockedStackMinimized = minimized; 780 } else if (mDockedStackMinimized != minimized) { 807 setMinimizedDockStack(boolean minimized, long animDuration, boolean isHomeStackResizable) argument [all...] |
/frameworks/base/core/java/android/app/ |
H A D | ActivityManagerInternal.java | 191 * minimized state. 193 public abstract void notifyDockedStackMinimizedChanged(boolean minimized); argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/ |
H A D | PipMotionHelper.java | 195 * @return the closest minimized PiP bounds. 206 * @return whether the PiP at the current bounds should be minimized. 238 * Flings the minimized PiP to the closest minimized snap target. 242 // We currently only allow flinging the minimized stack up and down, so just lock the 259 * Animates the PiP to the minimized state, slightly offscreen. 337 Rect normalMovementBounds, Rect currentMovementBounds, boolean minimized, 345 if (minimized) { 336 animateToUnexpandedState(Rect normalBounds, float savedSnapFraction, Rect normalMovementBounds, Rect currentMovementBounds, boolean minimized, boolean immediate) argument
|
/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | RecentsAnimationController.java | 106 // minimized 210 public void setSplitScreenMinimized(boolean minimized) { 218 mSplitScreenMinimized = minimized; 303 // Save the minimized home height
|
H A D | DockedStackDividerController.java | 233 // The offset in the left (landscape)/top (portrait) is calculated with the minimized 240 // minimized size height in portrait mode. 551 Slog.e(TAG_WM, "Error delivering minimized dock changed event.", e); 645 // We were minimized, and now we are still minimized, but somebody is trying to launch an 655 // When the home activity is the recents component and we are already minimized, 693 // Do not minimize when dock is already minimized while keyguard is showing and not 719 * Sets whether the docked stack is currently in a minimized state, i.e. all the tasks in the 722 * @param minimizedDock Whether the docked stack is currently minimized. 851 private boolean setMinimizedDockedStack(boolean minimized) { argument [all...] |
/frameworks/base/services/core/java/com/android/server/am/ |
H A D | ActivityStackSupervisor.java | 564 * Is dock currently minimized. 4613 void setDockedStackMinimized(boolean minimized) { argument 4614 mIsDockMinimized = minimized; 4858 // primary split-screen stack is in the minimized mode which means it can't 4864 // Immediately update the minimized docked stack mode, the upcoming animation
|
H A D | ActivityManagerService.java | 26390 notifyDockedStackMinimizedChanged(boolean minimized) argument [all...] |