summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/android/launcher2/DrawableStateProxyView.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/com/android/launcher2/DrawableStateProxyView.java b/src/com/android/launcher2/DrawableStateProxyView.java
index dac958416..5d2f6e0a2 100644
--- a/src/com/android/launcher2/DrawableStateProxyView.java
+++ b/src/com/android/launcher2/DrawableStateProxyView.java
@@ -19,6 +19,7 @@ package com.android.launcher2;
import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
+import android.view.MotionEvent;
import android.view.View;
import android.widget.LinearLayout;
@@ -37,6 +38,7 @@ public class DrawableStateProxyView extends LinearLayout {
this(context, attrs, 0);
}
+
public DrawableStateProxyView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
@@ -59,4 +61,9 @@ public class DrawableStateProxyView extends LinearLayout {
mView.setPressed(isPressed());
mView.setHovered(isHovered());
}
+
+ @Override
+ public boolean onHoverEvent(MotionEvent event) {
+ return false;
+ }
}