Searched defs:fullscreen (Results 1 - 7 of 7) 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.java1890 // drag resizing uses fullscreen surface), need to check surfaceSizeChanged
6008 boolean fullscreen = frame.equals(backDropFrame);
6011 mWindowCallbacks.get(i).onWindowSizeIsChanging(backDropFrame, fullscreen,
7215 private void startDragResizing(Rect initialBounds, boolean fullscreen, Rect systemInsets, argument
7220 mWindowCallbacks.get(i).onWindowDragResizeStart(initialBounds, fullscreen,
/frameworks/base/core/java/com/android/internal/policy/
H A DBackdropFrameRenderer.java81 boolean fullscreen, Rect systemInsets, Rect stableInsets, int resizeMode) {
96 mFullscreen = fullscreen;
97 mOldFullscreen = fullscreen;
151 * have changed or whether window switched between a fullscreen or non-fullscreen layout.
155 * @param fullscreen Whether the window is currently drawing in fullscreen.
159 public void setTargetRect(Rect newTargetBounds, boolean fullscreen, Rect systemInsets, argument
162 mFullscreen = fullscreen;
305 * @param fullscreen Whethe
78 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
309 redrawLocked(Rect newBounds, boolean fullscreen, Rect systemInsets, Rect stableInsets) argument
365 drawColorViews(int left, int top, int width, int height, boolean fullscreen, Rect systemInsets, Rect stableInsets) argument
[all...]
H A DDecorView.java1086 // If we didn't request fullscreen layout, but we still got it because of the
1988 * created for an activity - the fullscreen stack ID will be returned.
2024 public void onWindowSizeIsChanging(Rect newBounds, boolean fullscreen, Rect systemInsets, argument
2027 mBackdropFrameRenderer.setTargetRect(newBounds, fullscreen, systemInsets, stableInsets);
2032 public void onWindowDragResizeStart(Rect initialBounds, boolean fullscreen, Rect systemInsets, argument
2048 getCurrentColor(mNavigationColorViewState), fullscreen, systemInsets,
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java521 * @param fullscreen If true, the fullscreen flag will be set; else it
524 public void setFullscreen(boolean fullscreen) { argument
525 if (mFullscreen != fullscreen) {
526 mFullscreen = fullscreen;
533 * Returns whether or not this dream is in fullscreen mode. Defaults to false.
1087 if (isFullscreen()) pw.print(" fullscreen");
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java125 boolean fullscreen; // covers the full screen? field in class:ActivityRecord
358 pw.print(prefix); pw.print("fullscreen="); pw.print(fullscreen);
455 // Make sure fontScale is always equal to global. For fullscreen apps, config is
476 // An activity is considered to be in multi-window mode if its task isn't fullscreen.
714 fullscreen = ent != null && !ent.array.getBoolean(
733 fullscreen = true;
796 if (fullscreen == toOpaque) {
800 // Keep track of the number of fullscreen activities in this task.
803 fullscreen
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java3537 int requestedOrientation, boolean fullscreen, boolean showForAllUsers, int userId,
3568 atoken.appFullscreen = fullscreen;
3751 // If this application is fullscreen, and didn't explicitly say
5149 * @return The initial bounds the stack was created with. null means fullscreen.
5328 * @param bounds New stack bounds. Passing in null sets the bounds to fullscreen.
5331 * @return True if the stack is now fullscreen.
6165 // we're fullscreen and not hosted in an ActivityView
3536 addAppToken(int addPos, IApplicationToken token, int taskId, int stackId, int requestedOrientation, boolean fullscreen, boolean showForAllUsers, int userId, int configChanges, boolean voiceInteraction, boolean launchTaskBehind, Rect taskBounds, Configuration config, int taskResizeMode, boolean alwaysFocusable, boolean homeTask, int targetSdkVersion, int rotationAnimationHint) argument

Completed in 166 milliseconds