Add InsetTransitionController to device search

Also removed plugin support as if both the feature flag and
the plugin is turned on, there are object/resource contention

Bug: 161594550

Change-Id: I2cb98e83c46c7e47db96b90fa8d7cb9620643221
This commit is contained in:
Hyunyoung Song
2020-07-18 08:32:23 -07:00
parent 37c01dc58a
commit d25dabb466
5 changed files with 239 additions and 71 deletions

View File

@@ -33,6 +33,7 @@ public class SystemUiController {
public static final int UI_STATE_SCRIM_VIEW = 1;
public static final int UI_STATE_WIDGET_BOTTOM_SHEET = 2;
public static final int UI_STATE_OVERVIEW = 3;
public static final int UI_STATE_ALLAPPS = 4;
public static final int FLAG_LIGHT_NAV = 1 << 0;
public static final int FLAG_DARK_NAV = 1 << 1;
@@ -40,7 +41,7 @@ public class SystemUiController {
public static final int FLAG_DARK_STATUS = 1 << 3;
private final Window mWindow;
private final int[] mStates = new int[4];
private final int[] mStates = new int[5];
public SystemUiController(Window window) {
mWindow = window;