summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/Hotseat.java
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2018-03-07 19:58:07 -0800
committerSunny Goyal <sunnygoyal@google.com>2018-03-13 12:57:32 -0700
commit7c7be8c20a8b1e8740b734c7cfcebf4b88163773 (patch)
tree2598f31dd3f3694a80769f6d8465ebb8538d94da /src/com/android/launcher3/Hotseat.java
parentfad58c8159305923c6daaf28dee8c87d3c6b298f (diff)
downloadandroid_packages_apps_Trebuchet-7c7be8c20a8b1e8740b734c7cfcebf4b88163773.tar.gz
android_packages_apps_Trebuchet-7c7be8c20a8b1e8740b734c7cfcebf4b88163773.tar.bz2
android_packages_apps_Trebuchet-7c7be8c20a8b1e8740b734c7cfcebf4b88163773.zip
Simplifying options popup and overview handling
> Removing support for page drag-n-drop from pagedView > Removing Overview UI from Launcher3 without quickstep and using options popup instead > Removing touch handlers from CellLayouts and showing options popup based on workspace long press > Excluding touch outside inset when showing the popup Bug: 74136505 Change-Id: I34c2a7ff58452db26f5d1a85d554be40fc75f2b8
Diffstat (limited to 'src/com/android/launcher3/Hotseat.java')
-rw-r--r--src/com/android/launcher3/Hotseat.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/com/android/launcher3/Hotseat.java b/src/com/android/launcher3/Hotseat.java
index 03043f245..211a75656 100644
--- a/src/com/android/launcher3/Hotseat.java
+++ b/src/com/android/launcher3/Hotseat.java
@@ -63,14 +63,6 @@ public class Hotseat extends FrameLayout implements LogContainerProvider, Insett
return mContent;
}
- /**
- * Registers the specified listener on the cell layout of the hotseat.
- */
- @Override
- public void setOnLongClickListener(OnLongClickListener l) {
- mContent.setOnLongClickListener(l);
- }
-
/* Get the orientation invariant order of the item in the hotseat for persistence. */
int getOrderInHotseat(int x, int y) {
return mHasVerticalHotseat ? (mContent.getCountY() - y - 1) : x;