blob: a4932bbdd732b3eb7a024bf3806044edc3d4488d [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 Chung8bca9e42017-04-16 15:59:43 -070046 void animateResizePinnedStack(Rect sourceHintBounds, Rect toBounds, int animationDuration,
47 boolean schedulePipModeChangedOnAnimationEnd) {
48 getWindowContainerController().animateResizePinnedStack(toBounds, sourceHintBounds,
49 animationDuration, schedulePipModeChangedOnAnimationEnd);
Winson Chung55893332017-02-17 17:13:10 -080050 }
51
52 void setPictureInPictureAspectRatio(float aspectRatio) {
53 getWindowContainerController().setPictureInPictureAspectRatio(aspectRatio);
54 }
55
56 void setPictureInPictureActions(List<RemoteAction> actions) {
57 getWindowContainerController().setPictureInPictureActions(actions);
58 }
Winson Chung02e71932017-03-10 10:08:17 -080059
Winson Chung40a5f932017-04-13 16:39:36 -070060 boolean isAnimatingBoundsToFullscreen() {
61 return getWindowContainerController().isAnimatingBoundsToFullscreen();
Winson Chung02e71932017-03-10 10:08:17 -080062 }
Winson Chung5af42fc2017-03-24 17:11:33 -070063
Winson Chung8bca9e42017-04-16 15:59:43 -070064 /**
65 * Returns whether to defer the scheduling of the multi-window mode.
66 */
67 boolean deferScheduleMultiWindowModeChanged() {
68 // For the pinned stack, the deferring of the multi-window mode changed is tied to the
69 // transition animation into picture-in-picture, and is called once the animation completes,
70 // or is interrupted in a way that would leave the stack in a non-fullscreen state.
71 // @see BoundsAnimationController
72 // @see BoundsAnimationControllerTests
73 return mWindowContainerController.deferScheduleMultiWindowModeChanged();
74 }
75
Winson Chung5af42fc2017-03-24 17:11:33 -070076 public void updatePictureInPictureModeForPinnedStackAnimation(Rect targetStackBounds) {
77 // It is guaranteed that the activities requiring the update will be in the pinned stack at
78 // this point (either reparented before the animation into PiP, or before reparenting after
79 // the animation out of PiP)
80 synchronized(this) {
81 ArrayList<TaskRecord> tasks = getAllTasks();
82 for (int i = 0; i < tasks.size(); i++ ) {
83 mStackSupervisor.scheduleUpdatePictureInPictureModeIfNeeded(tasks.get(i),
84 targetStackBounds, true /* immediate */);
85 }
86 }
87 }
Winson Chung55893332017-02-17 17:13:10 -080088}