Searched defs:fullscreen (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/android/view/
H A DWindowCallbacks.java36 * It also gets called when the insets changed, or when the window switched between a fullscreen
37 * layout or a non-fullscreen layout. It can be used to perform a "quick and dirty" resize which
43 * @param fullscreen Whether the window is currently drawing in fullscreen.
47 void onWindowSizeIsChanging(Rect newBounds, boolean fullscreen, Rect systemInsets, argument
54 * @param fullscreen Whether the window is currently drawing in fullscreen.
58 void onWindowDragResizeStart(Rect initialBounds, boolean fullscreen, Rect systemInsets, argument
H A DViewRootImpl.java2145 // drag resizing uses fullscreen surface), need to check surfaceSizeChanged
6846 boolean fullscreen = frame.equals(backDropFrame);
6849 mWindowCallbacks.get(i).onWindowSizeIsChanging(backDropFrame, fullscreen,
8105 private void startDragResizing(Rect initialBounds, boolean fullscreen, Rect systemInsets, argument
8112 initialBounds, fullscreen, systemInsets, stableInsets, resizeMode);
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
H A DWindowCallbacksCompat.java29 public void onWindowSizeIsChanging(Rect newBounds, boolean fullscreen, Rect systemInsets,
31 WindowCallbacksCompat.this.onWindowSizeIsChanging(newBounds, fullscreen, systemInsets,
36 public void onWindowDragResizeStart(Rect initialBounds, boolean fullscreen,
38 WindowCallbacksCompat.this.onWindowDragResizeStart(initialBounds, fullscreen,
69 public void onWindowSizeIsChanging(Rect newBounds, boolean fullscreen, Rect systemInsets, argument
72 public void onWindowDragResizeStart(Rect initialBounds, boolean fullscreen, Rect systemInsets, argument
/frameworks/base/core/java/com/android/internal/policy/
H A DBackdropFrameRenderer.java82 boolean fullscreen, Rect systemInsets, Rect stableInsets, int resizeMode) {
97 mFullscreen = fullscreen;
98 mOldFullscreen = fullscreen;
152 * have changed or whether window switched between a fullscreen or non-fullscreen layout.
156 * @param fullscreen Whether the window is currently drawing in fullscreen.
160 public void setTargetRect(Rect newTargetBounds, boolean fullscreen, Rect systemInsets, argument
163 mFullscreen = fullscreen;
306 * @param fullscreen Whethe
79 BackdropFrameRenderer(DecorView decorView, ThreadedRenderer renderer, Rect initialBounds, Drawable resizingBackgroundDrawable, Drawable captionBackgroundDrawable, Drawable userCaptionBackgroundDrawable, int statusBarColor, int navigationBarColor, boolean fullscreen, Rect systemInsets, Rect stableInsets, int resizeMode) argument
310 redrawLocked(Rect newBounds, boolean fullscreen, Rect systemInsets, Rect stableInsets) argument
366 drawColorViews(int left, int top, int width, int height, boolean fullscreen, Rect systemInsets, Rect stableInsets) argument
[all...]
H A DDecorView.java1129 // If we didn't request fullscreen layout, but we still got it because of the
2069 public void onWindowSizeIsChanging(Rect newBounds, boolean fullscreen, Rect systemInsets, argument
2072 mBackdropFrameRenderer.setTargetRect(newBounds, fullscreen, systemInsets, stableInsets);
2077 public void onWindowDragResizeStart(Rect initialBounds, boolean fullscreen, Rect systemInsets, argument
2093 getCurrentColor(mNavigationColorViewState), fullscreen, systemInsets,
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DWindowTestUtils.java125 boolean fullscreen, boolean showForAllUsers, int targetSdk, int orientation,
128 super(service, token, voiceInteraction, dc, inputDispatchingTimeoutNanos, fullscreen,
286 SCREEN_ORIENTATION_UNSPECIFIED, true /* fullscreen */,
297 boolean fullscreen, boolean showForAllUsers, int targetSdk, int orientation,
301 inputDispatchingTimeoutNanos, fullscreen, showForAllUsers, targetSdk,
123 TestAppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction, DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen, boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint, int configChanges, boolean launchTaskBehind, boolean alwaysFocusable, AppWindowContainerController controller) argument
295 createAppWindow(WindowManagerService service, IApplicationToken token, boolean voiceInteraction, DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen, boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint, int configChanges, boolean launchTaskBehind, boolean alwaysFocusable, AppWindowContainerController controller) argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppWindowContainerController.java188 int requestedOrientation, boolean fullscreen, boolean showForAllUsers, int configChanges,
191 this(taskController, token, listener, index, requestedOrientation, fullscreen,
200 int requestedOrientation, boolean fullscreen, boolean showForAllUsers, int configChanges,
222 inputDispatchingTimeoutNanos, fullscreen, showForAllUsers, targetSdkVersion,
234 boolean fullscreen, boolean showForAllUsers, int targetSdk, int orientation,
238 inputDispatchingTimeoutNanos, fullscreen, showForAllUsers, targetSdk, orientation,
186 AppWindowContainerController(TaskWindowContainerController taskController, IApplicationToken token, AppWindowContainerListener listener, int index, int requestedOrientation, boolean fullscreen, boolean showForAllUsers, int configChanges, boolean voiceInteraction, boolean launchTaskBehind, boolean alwaysFocusable, int targetSdkVersion, int rotationAnimationHint, long inputDispatchingTimeoutNanos) argument
198 AppWindowContainerController(TaskWindowContainerController taskController, IApplicationToken token, AppWindowContainerListener listener, int index, int requestedOrientation, boolean fullscreen, boolean showForAllUsers, int configChanges, boolean voiceInteraction, boolean launchTaskBehind, boolean alwaysFocusable, int targetSdkVersion, int rotationAnimationHint, long inputDispatchingTimeoutNanos, WindowManagerService service) argument
232 createAppWindow(WindowManagerService service, IApplicationToken token, boolean voiceInteraction, DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen, boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint, int configChanges, boolean launchTaskBehind, boolean alwaysFocusable, AppWindowContainerController controller) argument
H A DAppWindowToken.java267 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
271 this(service, token, voiceInteraction, dc, fullscreen);
1329 // Entering PiP from fullscreen, reset the snap fraction
1333 // Leaving PiP to fullscreen, save the snap fraction based on the pre-animation bounds
1343 // We skip the animation if the fullscreen configuration is not compatible, so
266 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction, DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen, boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint, int configChanges, boolean launchTaskBehind, boolean alwaysFocusable, AppWindowContainerController controller) argument
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java556 * @param fullscreen If true, the fullscreen flag will be set; else it
559 public void setFullscreen(boolean fullscreen) { argument
560 if (mFullscreen != fullscreen) {
561 mFullscreen = fullscreen;
568 * Returns whether or not this dream is in fullscreen mode. Defaults to false.
1133 if (isFullscreen()) pw.print(" fullscreen");
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java500 final boolean fullscreen = msg.arg2 != 0;
506 mFullscreenMode = fullscreen;
551 final boolean fullscreen = msg.arg1 != 0;
554 mFullscreenMode = fullscreen;
560 ic.reportFullscreenMode(fullscreen);
642 public void setActive(boolean active, boolean fullscreen) {
643 mH.obtainMessage(MSG_SET_ACTIVE, active ? 1 : 0, fullscreen ? 1 : 0).sendToTarget();
653 public void reportFullscreenMode(boolean fullscreen) {
654 mH.obtainMessage(MSG_REPORT_FULLSCREEN_MODE, fullscreen ? 1 : 0, 0)
830 * in fullscreen mod
842 reportFullscreenMode(IBinder token, boolean fullscreen) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java251 boolean fullscreen; // The activity is opaque and fills the entire space of this task. field in class:ActivityRecord
252 // TODO: See if it possible to combine this with the fullscreen field.
513 pw.print(prefix); pw.print("fullscreen="); pw.print(fullscreen);
671 // An activity is considered to be in multi-window mode if its task isn't fullscreen.
943 fullscreen = !ActivityInfo.isTranslucentOrFloating(ent.array);
1016 this, Integer.MAX_VALUE /* add on top */, info.screenOrientation, fullscreen,
1024 // When an activity is started directly into a split-screen fullscreen stack, we need to
1167 if (fullscreen == toOpaque) {
1171 // Keep track of the number of fullscreen activitie
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java542 * {@code true} if the current input method is in fullscreen mode.
3527 final boolean fullscreen = msg.arg1 != 0;
3530 clientState.client.reportFullscreenMode(fullscreen);
3533 + "reportFullscreen(" + fullscreen + ") notification to pid="
4596 public void reportFullscreenMode(IBinder token, boolean fullscreen) { argument
4605 mInFullscreenMode = fullscreen;
4607 MSG_REPORT_FULLSCREEN_MODE, fullscreen ? 1 : 0, mCurClient));

Completed in 1355 milliseconds