am ecd98e70: am 5c9bcc6f: Voice search icon not touch explorable.

* commit 'ecd98e706c6d52dcc1c316b44b6b34bd71c1e2af':
  Voice search icon not touch explorable.
This commit is contained in:
Svetoslav Ganov
2012-06-02 08:44:35 -07:00
committed by Android Git Automerger
@@ -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;
}
}