blob: a1b95f9de05a41ff822e96ff57b7361410962142 [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;
Wale Ogunwale42f07d92017-05-01 21:32:58 -070020import android.content.res.Configuration;
Winson Chung55893332017-02-17 17:13:10 -080021import android.graphics.Rect;
22
Winson Chung55893332017-02-17 17:13:10 -080023import 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
Andrii Kulianb1cdb102017-07-13 15:33:06 -070035 PinnedActivityStack(ActivityStackSupervisor.ActivityDisplay display, int stackId,
36 ActivityStackSupervisor supervisor, RecentTasks recentTasks, boolean onTop) {
37 super(display, stackId, supervisor, recentTasks, onTop);
Winson Chung55893332017-02-17 17:13:10 -080038 }
39
40 @Override
41 PinnedStackWindowController createStackWindowController(int displayId, boolean onTop,
Wale Ogunwalef75962a2017-08-23 14:58:04 -070042 Rect outBounds, Configuration overrideConfig) {
Wale Ogunwale687b4272017-07-27 02:56:23 -070043 return new PinnedStackWindowController(mStackId, this, displayId, onTop, outBounds,
Wale Ogunwalef75962a2017-08-23 14:58:04 -070044 overrideConfig);
Winson Chung55893332017-02-17 17:13:10 -080045 }
46
Winson Chunga71febe2017-05-22 11:14:22 -070047 Rect getDefaultPictureInPictureBounds(float aspectRatio) {
Winson Chung9c844412017-04-27 17:36:41 -070048 return getWindowContainerController().getPictureInPictureBounds(aspectRatio,
Winson Chunga71febe2017-05-22 11:14:22 -070049 null /* currentStackBounds */);
Winson Chung9c844412017-04-27 17:36:41 -070050 }
51
Winson Chung8bca9e42017-04-16 15:59:43 -070052 void animateResizePinnedStack(Rect sourceHintBounds, Rect toBounds, int animationDuration,
Winson Chunge7ba6862017-05-24 12:13:33 -070053 boolean fromFullscreen) {
Wale Ogunwale42f07d92017-05-01 21:32:58 -070054 if (skipResizeAnimation(toBounds == null /* toFullscreen */)) {
55 mService.moveTasksToFullscreenStack(mStackId, true /* onTop */);
56 } else {
57 getWindowContainerController().animateResizePinnedStack(toBounds, sourceHintBounds,
Winson Chunge7ba6862017-05-24 12:13:33 -070058 animationDuration, fromFullscreen);
Wale Ogunwale42f07d92017-05-01 21:32:58 -070059 }
60 }
61
62 private boolean skipResizeAnimation(boolean toFullscreen) {
63 if (!toFullscreen) {
64 return false;
65 }
66 final Configuration parentConfig = getParent().getConfiguration();
67 final ActivityRecord top = topRunningNonOverlayTaskActivity();
68 return top != null && !top.isConfigurationCompatible(parentConfig);
Winson Chung55893332017-02-17 17:13:10 -080069 }
70
71 void setPictureInPictureAspectRatio(float aspectRatio) {
72 getWindowContainerController().setPictureInPictureAspectRatio(aspectRatio);
73 }
74
75 void setPictureInPictureActions(List<RemoteAction> actions) {
76 getWindowContainerController().setPictureInPictureActions(actions);
77 }
Winson Chung02e71932017-03-10 10:08:17 -080078
Winson Chung40a5f932017-04-13 16:39:36 -070079 boolean isAnimatingBoundsToFullscreen() {
80 return getWindowContainerController().isAnimatingBoundsToFullscreen();
Winson Chung02e71932017-03-10 10:08:17 -080081 }
Winson Chung5af42fc2017-03-24 17:11:33 -070082
Winson Chung8bca9e42017-04-16 15:59:43 -070083 /**
84 * Returns whether to defer the scheduling of the multi-window mode.
85 */
86 boolean deferScheduleMultiWindowModeChanged() {
87 // For the pinned stack, the deferring of the multi-window mode changed is tied to the
88 // transition animation into picture-in-picture, and is called once the animation completes,
89 // or is interrupted in a way that would leave the stack in a non-fullscreen state.
90 // @see BoundsAnimationController
91 // @see BoundsAnimationControllerTests
92 return mWindowContainerController.deferScheduleMultiWindowModeChanged();
93 }
94
Winson Chung5af42fc2017-03-24 17:11:33 -070095 public void updatePictureInPictureModeForPinnedStackAnimation(Rect targetStackBounds) {
96 // It is guaranteed that the activities requiring the update will be in the pinned stack at
97 // this point (either reparented before the animation into PiP, or before reparenting after
98 // the animation out of PiP)
99 synchronized(this) {
100 ArrayList<TaskRecord> tasks = getAllTasks();
101 for (int i = 0; i < tasks.size(); i++ ) {
102 mStackSupervisor.scheduleUpdatePictureInPictureModeIfNeeded(tasks.get(i),
103 targetStackBounds, true /* immediate */);
104 }
105 }
106 }
Winson Chung55893332017-02-17 17:13:10 -0800107}