Merge "Hide keyboard only when scrolling happens" into sc-dev

This commit is contained in:
Hyunyoung Song
2021-03-16 16:42:58 +00:00
committed by Android (Google) Code Review
6 changed files with 17 additions and 10 deletions

View File

@@ -246,11 +246,7 @@ public class AllAppsContainerView extends SpringRelativeLayout implements DragSo
hideInput();
return false;
}
boolean shouldScroll = rv.shouldContainerScroll(ev, mLauncher.getDragLayer());
if (shouldScroll) {
hideInput();
}
return shouldScroll;
return rv.shouldContainerScroll(ev, mLauncher.getDragLayer());
}
@Override