WindowCompat
public final class WindowCompat
Helper for accessing features in Window.
Summary
Constants |
|
|---|---|
static final int |
Flag for enabling the Action Bar. |
static final int |
Flag for requesting an Action Bar that overlays window content. |
static final int |
Flag for specifying the behavior of action modes when an Action Bar is not present. |
Public methods |
|
|---|---|
static void |
enableEdgeToEdge(@NonNull Window window)Enables the content of the given |
static @NonNull WindowInsetsControllerCompat |
getInsetsController(@NonNull Window window, @NonNull View view)Retrieves the single |
static @NonNull T |
<T extends View> requireViewById(@NonNull Window window, @IdRes int id)Finds a view that was identified by the |
static void |
setDecorFitsSystemWindows(Sets whether the decor view should fit root-level content views for |
Constants
FEATURE_ACTION_BAR
public static final int FEATURE_ACTION_BAR = 8
Flag for enabling the Action Bar. This is enabled by default for some devices. The Action Bar replaces the title bar and provides an alternate location for an on-screen menu button on some devices.
FEATURE_ACTION_BAR_OVERLAY
public static final int FEATURE_ACTION_BAR_OVERLAY = 9
Flag for requesting an Action Bar that overlays window content. Normally an Action Bar will sit in the space above window content, but if this feature is requested along with FEATURE_ACTION_BAR it will be layered over the window content itself. This is useful if you would like your app to have more control over how the Action Bar is displayed, such as letting application content scroll beneath an Action Bar with a transparent background or otherwise displaying a transparent/translucent Action Bar over application content.
This mode is especially useful with View.SYSTEM_UI_FLAG_FULLSCREEN, which allows you to seamlessly hide the action bar in conjunction with other screen decorations.
As of JELLY_BEAN, when an ActionBar is in this mode it will adjust the insets provided to View.fitSystemWindows(Rect) to include the content covered by the action bar, so you can do layout within that space.
FEATURE_ACTION_MODE_OVERLAY
public static final int FEATURE_ACTION_MODE_OVERLAY = 10
Flag for specifying the behavior of action modes when an Action Bar is not present. If overlay is enabled, the action mode UI will be allowed to cover existing window content.
Public methods
enableEdgeToEdge
public static void enableEdgeToEdge(@NonNull Window window)
Enables the content of the given window to reach the edges of the window without getting inset by system insets, and prevents the framework from placing color views behind system bars.
getInsetsController
public static @NonNull WindowInsetsControllerCompat getInsetsController(@NonNull Window window, @NonNull View view)
Retrieves the single WindowInsetsControllerCompat of the window this view is attached to.
| Returns | |
|---|---|
@NonNull WindowInsetsControllerCompat |
The |
| See also | |
|---|---|
getInsetsController |
requireViewById
public static @NonNull T <T extends View> requireViewById(@NonNull Window window, @IdRes int id)
Finds a view that was identified by the android:id XML attribute that was processed in onCreate, or throws an IllegalArgumentException if the ID is invalid, or there is no matching view in the hierarchy.
Note: In most cases -- depending on compiler support -- the resulting view is automatically cast to the target class type. If the target class type is unconstrained, an explicit cast may be necessary.
| Parameters | |
|---|---|
@NonNull Window window |
window in which to find the view. |
@IdRes int id |
the ID to search for |
| Returns | |
|---|---|
@NonNull T |
a view with given ID |
| See also | |
|---|---|
requireViewById |
|
findViewById |
setDecorFitsSystemWindows
public static void setDecorFitsSystemWindows(
@NonNull Window window,
boolean decorFitsSystemWindows
)
Sets whether the decor view should fit root-level content views for WindowInsetsCompat.
If set to false, the framework will not fit the content view to the insets and will just pass through the WindowInsetsCompat to the content view.
Please note: using the setSystemUiVisibility API in your app can conflict with this method. Please discontinue use of setSystemUiVisibility.