Move DropTargetBar to bottom

The DropTargetBar has "Remove" and "Uninstall" buttons for workspace edit mode. We are moving them to the bottom for workspace home gardening

Bug: 251259222
Test: Turn on flag HOME_GARDENING_WORKSPACE_BUTTONS and enter spring loaded mode (edit workspace), notice the buttons are now at the bottom
Change-Id: I739162bdd5764dd8367a63a67fae0fe5c7329b0a
This commit is contained in:
Federico Baron
2022-10-25 14:49:24 -07:00
parent 6a2dd438da
commit 626d51c68c

View File

@@ -18,6 +18,7 @@ package com.android.launcher3;
import static com.android.launcher3.ButtonDropTarget.TOOLTIP_DEFAULT;
import static com.android.launcher3.anim.AlphaUpdateListener.updateVisibility;
import static com.android.launcher3.config.FeatureFlags.HOME_GARDENING_WORKSPACE_BUTTONS;
import android.animation.TimeInterpolator;
import android.content.Context;
@@ -118,7 +119,13 @@ public class DropTargetBar extends FrameLayout
lp.rightMargin = (grid.widthPx - lp.width) / 2;
}
lp.height = grid.dropTargetBarSizePx;
lp.gravity = Gravity.CENTER_HORIZONTAL | Gravity.TOP;
// TODO: Add tablet support for DropTargetBar when HOME_GARDENING_WORKSPACE_BUTTONS flag
// is on
if (HOME_GARDENING_WORKSPACE_BUTTONS.get()) {
lp.gravity = Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM;
} else {
lp.gravity = Gravity.CENTER_HORIZONTAL | Gravity.TOP;
}
DeviceProfile dp = mLauncher.getDeviceProfile();
int horizontalPadding = dp.dropTargetHorizontalPaddingPx;