Home | History | Annotate | Download | only in view

Lines Matching refs:inset

30  * <p>WindowInsets are immutable and may be expanded to include more inset types in the future.
141 * Returns the left system window inset in pixels.
143 * <p>The system window inset represents the area of a full-screen window that is
147 * @return The left system window inset
154 * Returns the top system window inset in pixels.
156 * <p>The system window inset represents the area of a full-screen window that is
160 * @return The top system window inset
167 * Returns the right system window inset in pixels.
169 * <p>The system window inset represents the area of a full-screen window that is
173 * @return The right system window inset
180 * Returns the bottom system window inset in pixels.
182 * <p>The system window inset represents the area of a full-screen window that is
186 * @return The bottom system window inset
193 * Returns the left window decor inset in pixels.
195 * <p>The window decor inset represents the area of the window content area that is
199 * @return The left window decor inset
207 * Returns the top window decor inset in pixels.
209 * <p>The window decor inset represents the area of the window content area that is
213 * @return The top window decor inset
221 * Returns the right window decor inset in pixels.
223 * <p>The window decor inset represents the area of the window content area that is
227 * @return The right window decor inset
235 * Returns the bottom window decor inset in pixels.
237 * <p>The window decor inset represents the area of the window content area that is
241 * @return The bottom window decor inset
251 * <p>The system window inset represents the area of a full-screen window that is
255 * @return true if any of the system window inset values are nonzero
265 * <p>The window decor inset represents the area of the window content area that is
269 * @return true if any of the window decor inset values are nonzero
280 * @return true if any inset values are nonzero
358 * @param left true to consume the left system window inset
359 * @param top true to consume the top system window inset
360 * @param right true to consume the right system window inset
361 * @param bottom true to consume the bottom system window inset
383 * @param left New left inset in pixels
384 * @param top New top inset in pixels
385 * @param right New right inset in pixels
386 * @param bottom New bottom inset in pixels
400 * @param systemWindowInsets New system window insets. Each field is the inset in pixels
446 * Returns the top stable inset in pixels.
448 * <p>The stable inset represents the area of a full-screen window that <b>may</b> be
451 * normally shown, but temporarily hidden, the stable inset will still provide the inset
454 * @return The top stable inset
461 * Returns the left stable inset in pixels.
463 * <p>The stable inset represents the area of a full-screen window that <b>may</b> be
466 * normally shown, but temporarily hidden, the stable inset will still provide the inset
469 * @return The left stable inset
476 * Returns the right stable inset in pixels.
478 * <p>The stable inset represents the area of a full-screen window that <b>may</b> be
481 * normally shown, but temporarily hidden, the stable inset will still provide the inset
484 * @return The right stable inset
491 * Returns the bottom stable inset in pixels.
493 * <p>The stable inset represents the area of a full-screen window that <b>may</b> be
496 * normally shown, but temporarily hidden, the stable inset will still provide the inset
499 * @return The bottom stable inset
508 * <p>The stable inset represents the area of a full-screen window that <b>may</b> be
511 * normally shown, but temporarily hidden, the stable inset will still provide the inset
514 * @return true if any of the stable inset values are nonzero
551 * Returns a copy of this instance inset in the given directions.
553 * @see #inset(int, int, int, int)
556 public WindowInsets inset(Rect r) {
557 return inset(r.left, r.top, r.right, r.bottom);
561 * Returns a copy of this instance inset in the given directions.
568 * childView.dispatchApplyWindowInsets(insets.inset(
577 * @return the inset insets
581 public WindowInsets inset(int left, int top, int right, int bottom) {
600 result.mDisplayCutout = result.mDisplayCutout.inset(left, top, right, bottom);