Searched refs:resizing (Results 1 - 10 of 10) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/ |
H A D | WindowManagerProxy.java | 178 public void setResizing(final boolean resizing) { argument 183 ActivityManager.getService().setSplitScreenResizing(resizing);
|
/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | TaskWindowContainerController.java | 178 * Puts this task into docked drag resizing mode. See {@link DragResizeMode}. 180 * @param resizing Whether to put the task into drag resize mode. 182 public void setTaskDockedResizing(boolean resizing) { argument 188 mContainer.setDragResizing(resizing, DRAG_RESIZE_MODE_DOCKED_DIVIDER);
|
H A D | DockedStackDividerController.java | 341 void setResizing(boolean resizing) { argument 342 if (mResizing != resizing) { 343 mResizing = resizing; 798 // We put all tasks into drag resizing mode - wait until all of them have completed the 799 // drag resizing switch.
|
H A D | WindowState.java | 880 // resizing in docked mode, we'd like to freeze the layout, so we also need to freeze the 1252 * Adds the window to the resizing list if any of the parameters we use to track the window 1325 // If the orientation is changing, or we're starting or ending a drag resizing action, 2432 // also reset drag resizing state, because the owner can't do it 3048 // When the task is docked, we send fullscreen sized backDropFrame as soon as resizing 3054 boolean resizing = isDragResizing() || isDragResizeChanged(); 3055 if (getWindowConfiguration().useWindowFrameForBackdrop() || !resizing) { 3213 // simulate that we are still resizing so the app fills the hole with the resizing 3222 final boolean resizing [all...] |
H A D | WindowManagerService.java | 6884 public void setDockedStackResizing(boolean resizing) { argument 6886 getDefaultDisplayContentLocked().getDockedDividerController().setResizing(resizing);
|
/frameworks/base/services/core/java/com/android/server/am/ |
H A D | ActivityStackSupervisor.java | 550 * Set of tasks that are in resizing mode during an app transition to fill the "void". 557 * will be ignored. Useful for the case where the caller is handling resizing of other stack and 2776 // Also disable docked stack resizing since we have manually adjusted the 2834 void setSplitScreenResizing(boolean resizing) { argument 2835 if (resizing == mDockedStackResizing) { 2839 mDockedStackResizing = resizing; 2840 mWindowManager.setDockedStackResizing(resizing); 2842 if (!resizing && mHasPendingDockedBounds) { 2891 // Don't allow re-entry while resizing. E.g. due to docked stack detaching. 2981 // We have finished the animation into PiP, and are resizing th [all...] |
H A D | TaskRecord.java | 481 void setTaskDockedResizing(boolean resizing) { argument 482 mWindowContainerController.setTaskDockedResizing(resizing); 1530 * @return True if the requested bounds are okay for a resizing request.
|
H A D | ActivityManagerService.java | 11529 public void setSplitScreenResizing(boolean resizing) { argument 11534 mStackSupervisor.setSplitScreenResizing(resizing); [all...] |
/frameworks/base/core/java/android/app/ |
H A D | IActivityManager.aidl | 562 * flexibility while resizing, or {@code null} if they should be the 565 * When resizing, we usually "freeze" the layout of a task. To 582 void setSplitScreenResizing(boolean resizing); 612 * flexibility while resizing, or {@code null} if they should be the
|
/frameworks/base/services/core/java/com/android/server/policy/ |
H A D | PhoneWindowManager.java | 5033 // If the window is resizing, then we want to base the content frame on our attached 8284 final boolean resizing = mWindowManagerInternal.isDockedDividerResizing(); 8287 // is visible but also when we are resizing for the transitions when docked stack 8289 mForceShowSystemBars = dockedStackVisible || freeformStackVisible || resizing; 8329 vis = configureNavBarOpacity(vis, dockedStackVisible, freeformStackVisible, resizing);
|
Completed in 161 milliseconds