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:
@@ -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);
|
||||
|
||||
@@ -336,7 +336,7 @@ public class ScrimView<T extends Launcher> extends View implements Insettable, O
|
||||
}
|
||||
|
||||
private void updateDragHandleVisibility(Drawable recycle) {
|
||||
boolean visible = mLauncher.getDeviceProfile().isVerticalBarLayout() || mAM.isEnabled();
|
||||
boolean visible = shouldDragHandleBeVisible();
|
||||
boolean wasVisible = mDragHandle != null;
|
||||
if (visible != wasVisible) {
|
||||
if (visible) {
|
||||
@@ -352,6 +352,10 @@ public class ScrimView<T extends Launcher> extends View implements Insettable, O
|
||||
}
|
||||
}
|
||||
|
||||
protected boolean shouldDragHandleBeVisible() {
|
||||
return mLauncher.getDeviceProfile().isVerticalBarLayout() || mAM.isEnabled();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean dispatchHoverEvent(MotionEvent event) {
|
||||
return mAccessibilityHelper.dispatchHoverEvent(event) || super.dispatchHoverEvent(event);
|
||||
|
||||
Reference in New Issue
Block a user