Extend recents button hitbox on tablet

* Extends hitbox when recents is tapped
when going from taskbar to overview.
* Extended region lasts for 400ms after
the animation ends.

Fixes: 225885714
Test: Manual, added unit test
Change-Id: I8766279c1a5bf6867f8d69ddd3af2aa3565deec2
This commit is contained in:
Vinit Nayak
2022-05-02 11:51:01 -07:00
parent 950437ce26
commit b1436b0ae7
5 changed files with 293 additions and 3 deletions

View File

@@ -182,7 +182,8 @@ public class TaskbarDragLayerController implements TaskbarControllers.LoggableTa
*/
public TouchController[] getTouchControllers() {
return new TouchController[]{mActivity.getDragController(),
mControllers.taskbarForceVisibleImmersiveController};
mControllers.taskbarForceVisibleImmersiveController,
mControllers.navbarButtonsViewController.getTouchController()};
}
}
}