Show drag handle indictor in 2 zone model

Note this is just the tiny arrow we show in accessibility mode, will
probably need to get some updated visual treatment going forward.

Bug: 143361609
Change-Id: I65975727f101984429aadc35a650826e36d9c9aa
This commit is contained in:
Tony Wickham
2020-03-09 16:31:21 -07:00
parent b365cc4387
commit 79a352169f
2 changed files with 12 additions and 1 deletions

View File

@@ -237,6 +237,13 @@ public class ShelfScrimView extends ScrimView<BaseQuickstepLauncher>
}
}
@Override
protected boolean shouldDragHandleBeVisible() {
boolean twoZoneSwipeModel = FeatureFlags.ENABLE_OVERVIEW_ACTIONS.get()
&& SysUINavigationMode.removeShelfFromOverview(mLauncher);
return twoZoneSwipeModel || super.shouldDragHandleBeVisible();
}
@Override
protected void onDraw(Canvas canvas) {
drawBackground(canvas);