[AA+] Add LAUNCHER_ALLAPPS_KEYBOARD_CLOSED event.

Also adds Launcher.allAppsLogger method to simplify AllApps specific user events logging.

Bug: 178562918
Change-Id: I57520fe1504079091f0ff2c4c74268f727ffe14f
This commit is contained in:
thiruram
2021-02-04 14:28:14 -08:00
parent 9012515fef
commit aafa8a44a3
4 changed files with 30 additions and 4 deletions

View File

@@ -213,10 +213,14 @@ public class AllAppsContainerView extends SpringRelativeLayout implements DragSo
if (insets == null) return;
if (insets.isVisible(WindowInsets.Type.ime())) {
getWindowInsetsController().hide(WindowInsets.Type.ime());
hideIme();
}
}
protected void hideIme() {
getWindowInsetsController().hide(WindowInsets.Type.ime());
}
/**
* Returns whether the view itself will handle the touch event or not.
*/