blob: 924e4af95401ca9f287f8509710bf17172233a95 [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 -080025import com.android.server.wm.StackWindowController;
26
Winson Chung5af42fc2017-03-24 17:11:33 -070027import java.util.ArrayList;
Winson Chung55893332017-02-17 17:13:10 -080028import java.util.List;
29
30/**
31 * State and management of the pinned stack of activities.
32 */
Winson Chung3a682872017-04-10 14:38:05 -070033class PinnedActivityStack extends ActivityStack<PinnedStackWindowController>
34 implements PinnedStackWindowListener {
Winson Chung55893332017-02-17 17:13:10 -080035
36 PinnedActivityStack(ActivityContainer activityContainer,
37 RecentTasks recentTasks, boolean onTop) {
38 super(activityContainer, recentTasks, onTop);
39 }
40
41 @Override
42 PinnedStackWindowController createStackWindowController(int displayId, boolean onTop,
43 Rect outBounds) {
44 return new PinnedStackWindowController(mStackId, this, displayId, onTop, outBounds);
45 }
46
Winson Chung08f81892017-03-02 15:40:51 -080047 void animateResizePinnedStack(Rect sourceBounds, Rect destBounds, int animationDuration) {
48 getWindowContainerController().animateResizePinnedStack(sourceBounds, destBounds,
49 animationDuration);
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
60 boolean isBoundsAnimatingToFullscreen() {
61 return getWindowContainerController().isBoundsAnimatingToFullscreen();
62 }
Winson Chung5af42fc2017-03-24 17:11:33 -070063
64 @Override
65 public void updatePictureInPictureModeForPinnedStackAnimation(Rect targetStackBounds) {
66 // It is guaranteed that the activities requiring the update will be in the pinned stack at
67 // this point (either reparented before the animation into PiP, or before reparenting after
68 // the animation out of PiP)
69 synchronized(this) {
70 ArrayList<TaskRecord> tasks = getAllTasks();
71 for (int i = 0; i < tasks.size(); i++ ) {
72 mStackSupervisor.scheduleUpdatePictureInPictureModeIfNeeded(tasks.get(i),
73 targetStackBounds, true /* immediate */);
74 }
75 }
76 }
Winson Chung55893332017-02-17 17:13:10 -080077}