blob: 672f563d17ca8747b9138d2fe40cfefab278616a [file] [log] [blame]
Winson Chung55893332017-02-17 17:13:10 -08001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.am;
18
19import android.app.RemoteAction;
20import android.graphics.Rect;
21
22import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
23import com.android.server.wm.PinnedStackWindowController;
Winson Chung3a682872017-04-10 14:38:05 -070024import com.android.server.wm.PinnedStackWindowListener;
Winson Chung55893332017-02-17 17:13:10 -080025
Winson Chung5af42fc2017-03-24 17:11:33 -070026import java.util.ArrayList;
Winson Chung55893332017-02-17 17:13:10 -080027import java.util.List;
28
29/**
30 * State and management of the pinned stack of activities.
31 */
Winson Chung3a682872017-04-10 14:38:05 -070032class PinnedActivityStack extends ActivityStack<PinnedStackWindowController>
33 implements PinnedStackWindowListener {
Winson Chung55893332017-02-17 17:13:10 -080034
35 PinnedActivityStack(ActivityContainer activityContainer,
36 RecentTasks recentTasks, boolean onTop) {
37 super(activityContainer, recentTasks, onTop);
38 }
39
40 @Override
41 PinnedStackWindowController createStackWindowController(int displayId, boolean onTop,
42 Rect outBounds) {
43 return new PinnedStackWindowController(mStackId, this, displayId, onTop, outBounds);
44 }
45
Winson Chung9c844412017-04-27 17:36:41 -070046 Rect getPictureInPictureBounds(float aspectRatio, boolean useExistingStackBounds) {
47 return getWindowContainerController().getPictureInPictureBounds(aspectRatio,
48 useExistingStackBounds);
49 }
50
Winson Chung8bca9e42017-04-16 15:59:43 -070051 void animateResizePinnedStack(Rect sourceHintBounds, Rect toBounds, int animationDuration,
52 boolean schedulePipModeChangedOnAnimationEnd) {
53 getWindowContainerController().animateResizePinnedStack(toBounds, sourceHintBounds,
54 animationDuration, schedulePipModeChangedOnAnimationEnd);
Winson Chung55893332017-02-17 17:13:10 -080055 }
56
57 void setPictureInPictureAspectRatio(float aspectRatio) {
58 getWindowContainerController().setPictureInPictureAspectRatio(aspectRatio);
59 }
60
61 void setPictureInPictureActions(List<RemoteAction> actions) {
62 getWindowContainerController().setPictureInPictureActions(actions);
63 }
Winson Chung02e71932017-03-10 10:08:17 -080064
Winson Chung40a5f932017-04-13 16:39:36 -070065 boolean isAnimatingBoundsToFullscreen() {
66 return getWindowContainerController().isAnimatingBoundsToFullscreen();
Winson Chung02e71932017-03-10 10:08:17 -080067 }
Winson Chung5af42fc2017-03-24 17:11:33 -070068
Winson Chung8bca9e42017-04-16 15:59:43 -070069 /**
70 * Returns whether to defer the scheduling of the multi-window mode.
71 */
72 boolean deferScheduleMultiWindowModeChanged() {
73 // For the pinned stack, the deferring of the multi-window mode changed is tied to the
74 // transition animation into picture-in-picture, and is called once the animation completes,
75 // or is interrupted in a way that would leave the stack in a non-fullscreen state.
76 // @see BoundsAnimationController
77 // @see BoundsAnimationControllerTests
78 return mWindowContainerController.deferScheduleMultiWindowModeChanged();
79 }
80
Winson Chung5af42fc2017-03-24 17:11:33 -070081 public void updatePictureInPictureModeForPinnedStackAnimation(Rect targetStackBounds) {
82 // It is guaranteed that the activities requiring the update will be in the pinned stack at
83 // this point (either reparented before the animation into PiP, or before reparenting after
84 // the animation out of PiP)
85 synchronized(this) {
86 ArrayList<TaskRecord> tasks = getAllTasks();
87 for (int i = 0; i < tasks.size(); i++ ) {
88 mStackSupervisor.scheduleUpdatePictureInPictureModeIfNeeded(tasks.get(i),
89 targetStackBounds, true /* immediate */);
90 }
91 }
92 }
Winson Chung55893332017-02-17 17:13:10 -080093}