1 /* 2 * Copyright (C) 2018 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 17 package com.android.wm.shell.recents; 18 19 import android.graphics.Rect; 20 import android.os.Bundle; 21 import android.view.RemoteAnimationTarget; 22 import android.window.TaskSnapshot; 23 import android.window.TransitionInfo; 24 25 import com.android.wm.shell.recents.IRecentsAnimationController; 26 27 /** 28 * Interface that is used to callback from window manager to the process that runs a recents 29 * animation to start or cancel it. 30 * 31 * {@hide} 32 */ 33 oneway interface IRecentsAnimationRunner { 34 35 /** 36 * Called when the system needs to cancel the current animation. This can be due to the 37 * wallpaper not drawing in time, or the handler not finishing the animation within a predefined 38 * amount of time. 39 * 40 * @param taskIds Indicates tasks with cancelling snapshot. 41 * @param taskSnapshots If the snapshots is null, the animation will be cancelled and the leash 42 * will be inactive immediately. Otherwise, the contents of the tasks will 43 * be replaced with {@param taskSnapshots}, such that the runner's leash is 44 * still active. As soon as the runner doesn't need the leash anymore, it 45 * must call {@link IRecentsAnimationController#cleanupScreenshot). 46 * 47 * @see {@link RecentsAnimationController#cleanupScreenshot} 48 */ onAnimationCanceled(in @ullable int[] taskIds, in @nullable TaskSnapshot[] taskSnapshots)49 void onAnimationCanceled(in @nullable int[] taskIds, 50 in @nullable TaskSnapshot[] taskSnapshots) = 1; 51 52 /** 53 * Called when the system is ready for the handler to start animating all the visible tasks. 54 * 55 * @param homeContentInsets The current home app content insets 56 * @param minimizedHomeBounds Specifies the bounds of the minimized home app, will be 57 * {@code null} if the device is not currently in split screen 58 */ onAnimationStart(in IRecentsAnimationController controller, in RemoteAnimationTarget[] apps, in RemoteAnimationTarget[] wallpapers, in Rect homeContentInsets, in Rect minimizedHomeBounds, in Bundle extras, in @nullable TransitionInfo info)59 void onAnimationStart(in IRecentsAnimationController controller, 60 in RemoteAnimationTarget[] apps, in RemoteAnimationTarget[] wallpapers, 61 in Rect homeContentInsets, in Rect minimizedHomeBounds, in Bundle extras, 62 in @nullable TransitionInfo info) = 2; 63 64 /** 65 * Called when the task of an activity that has been started while the recents animation 66 * was running becomes ready for control. 67 */ onTasksAppeared(in RemoteAnimationTarget[] app, in @nullable TransitionInfo transitionInfo)68 void onTasksAppeared(in RemoteAnimationTarget[] app, 69 in @nullable TransitionInfo transitionInfo) = 3; 70 } 71