diff options
| author | 2023-03-17 02:57:51 +0000 | |
|---|---|---|
| committer | 2023-03-17 02:57:51 +0000 | |
| commit | af5033e80b7f74611f7358ae599bc756de7104b8 (patch) | |
| tree | 89aefcec7dcc0a65933497a0f8944afbfbc4db9e | |
| parent | 41c836e69467784ce5d2d2c5d883151bde77563e (diff) | |
| parent | 2d967e45be8367ac6c585835171dcce8383934f3 (diff) | |
Merge "Remove the layer of task overlay activities" into udc-dev
| -rw-r--r-- | core/java/android/window/TaskConstants.java | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/core/java/android/window/TaskConstants.java b/core/java/android/window/TaskConstants.java index c40384027adf..3a04198a3add 100644 --- a/core/java/android/window/TaskConstants.java +++ b/core/java/android/window/TaskConstants.java @@ -80,14 +80,6 @@ public class TaskConstants { public static final int TASK_CHILD_LAYER_TASK_OVERLAY = 5 * TASK_CHILD_LAYER_REGION_SIZE; /** - * Legacy machanism to force an activity to the top of the task (i.e. for work profile - * comfirmation). - * @hide - */ - public static final int TASK_CHILD_LAYER_TASK_OVERLAY_ACTIVITIES = - 6 * TASK_CHILD_LAYER_REGION_SIZE; - - /** * Z-orders of task child layers other than activities, task fragments and layers interleaved * with them, e.g. IME windows. [-10000, 10000) is reserved for these layers. * @hide @@ -99,8 +91,7 @@ public class TaskConstants { TASK_CHILD_LAYER_LETTERBOX_EDUCATION, TASK_CHILD_LAYER_WINDOW_DECORATIONS, TASK_CHILD_LAYER_RECENTS_ANIMATION_PIP_OVERLAY, - TASK_CHILD_LAYER_TASK_OVERLAY, - TASK_CHILD_LAYER_TASK_OVERLAY_ACTIVITIES + TASK_CHILD_LAYER_TASK_OVERLAY }) public @interface TaskChildLayer {} } |