Extend all apps pull up activation area to page indicator view

b/29752599

Change-Id: I3ee5efefa98defbc8f386895753946efe79708b4
Background: page indicator's background is where the caret symbol is.
This commit is contained in:
Hyunyoung Song
2016-06-27 22:00:48 -07:00
parent f50b3cb3cb
commit 7744169812
3 changed files with 9 additions and 2 deletions

View File

@@ -137,7 +137,9 @@ public class AllAppsTransitionController implements TouchController, VerticalPul
return true;
}
} else {
if (mLauncher.getDragLayer().isEventOverHotseat(ev) && !grid.isVerticalBarLayout()) {
if ((mLauncher.getDragLayer().isEventOverHotseat(ev)
|| mLauncher.getDragLayer().isEventOverPageIndicator(ev))
&& !grid.isVerticalBarLayout()) {
return true;
}
}