summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/Hotseat.java
diff options
context:
space:
mode:
authorWinson Chung <winsonc@google.com>2013-09-13 11:14:45 -0700
committerWinson Chung <winsonc@google.com>2013-09-13 11:40:05 -0700
commit11a1a53651924b544513f1f6971a735b18d67539 (patch)
treeb949b9438dd1b47c01e56574d2dc13fbd9cad7a1 /src/com/android/launcher3/Hotseat.java
parentc639f8cdab11c603e25b5ae38282dddcb939d401 (diff)
downloadandroid_packages_apps_Trebuchet-11a1a53651924b544513f1f6971a735b18d67539.tar.gz
android_packages_apps_Trebuchet-11a1a53651924b544513f1f6971a735b18d67539.tar.bz2
android_packages_apps_Trebuchet-11a1a53651924b544513f1f6971a735b18d67539.zip
Fixing issue with folders not showing up.
- Add long click on empty spaces in hotseat to show overview mode - Limit the height of all apps to the workspace + hotseat size - Fixing some comments Change-Id: Ie5a97a8b04e449385e2b3f6230079aebf8e15d5a
Diffstat (limited to 'src/com/android/launcher3/Hotseat.java')
-rw-r--r--src/com/android/launcher3/Hotseat.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/com/android/launcher3/Hotseat.java b/src/com/android/launcher3/Hotseat.java
index ec787614d..fbbb09f51 100644
--- a/src/com/android/launcher3/Hotseat.java
+++ b/src/com/android/launcher3/Hotseat.java
@@ -69,6 +69,14 @@ public class Hotseat extends FrameLayout {
CellLayout getLayout() {
return mContent;
}
+
+ /**
+ * Registers the specified listener on the cell layout of the hotseat.
+ */
+ @Override
+ public void setOnLongClickListener(OnLongClickListener l) {
+ mContent.setOnLongClickListener(l);
+ }
private boolean hasVerticalHotseat() {
return (mIsLandscape && mTransposeLayoutWithOrientation);