Merge "Add ActivityEmbedding Property key"

This commit is contained in:
Chris Li
2022-07-19 11:09:04 +00:00
committed by Android (Google) Code Review
2 changed files with 28 additions and 0 deletions

View File

@@ -51539,6 +51539,7 @@ package android.view {
method public default boolean isCrossWindowBlurEnabled();
method public default void removeCrossWindowBlurEnabledListener(@NonNull java.util.function.Consumer<java.lang.Boolean>);
method public void removeViewImmediate(android.view.View);
field public static final String PROPERTY_ACTIVITY_EMBEDDING_ALLOW_SYSTEM_OVERRIDE = "android.window.PROPERTY_ACTIVITY_EMBEDDING_ALLOW_SYSTEM_OVERRIDE";
}
public static class WindowManager.BadTokenException extends java.lang.RuntimeException {

View File

@@ -819,6 +819,33 @@ public interface WindowManager extends ViewManager {
*/
public static final String PARCEL_KEY_SHORTCUTS_ARRAY = "shortcuts_array";
/**
* Application level {@link android.content.pm.PackageManager.Property} tag for developers to
* provide consent for their app to allow OEMs to manually provide ActivityEmbedding split
* rule configuration on behalf of the app.
*
* <p>If {@code true}, the system CAN override the windowing behaviors for the app, such as
* showing some activities side-by-side. In this case, it will report that ActivityEmbedding
* APIs are disabled for the app to avoid conflict.
*
* <p>If {@code false}, the system MUST NOT override the window behavior for the app. It should
* be used if the app wants to provide their own ActivityEmbedding split rules, or if the app
* wants to opt-out of system overrides for any other reason.
*
* <p>Default is {@code false}.
*
* <p>Example usage:
* <pre>
* &lt;application&gt;
* &lt;property
* android:name="android.window.PROPERTY_ACTIVITY_EMBEDDING_ALLOW_SYSTEM_OVERRIDE"
* android:value="true|false"/&gt;
* &lt;/application&gt;
* </pre>
*/
String PROPERTY_ACTIVITY_EMBEDDING_ALLOW_SYSTEM_OVERRIDE =
"android.window.PROPERTY_ACTIVITY_EMBEDDING_ALLOW_SYSTEM_OVERRIDE";
/**
* Request for keyboard shortcuts to be retrieved asynchronously.
*