1 package com.android.quickstep
2 
3 interface SplitSelectionListener {
4     /** Called when the first app has been selected with the intention to launch split screen */
onSplitSelectionActivenull5     fun onSplitSelectionActive()
6 
7     /** Called when the second app has been selected with the intention to launch split screen */
8     fun onSplitSelectionConfirmed()
9 
10     /**
11      * Called when the user no longer is in the process of selecting apps for split screen.
12      * [launchedSplit] will be true if selected apps have launched successfully (either in
13      * split screen or fullscreen), false if the user canceled/exited the selection process
14      */
15     fun onSplitSelectionExit(launchedSplit: Boolean) {
16     }
17 }