* commit 'ecd98e706c6d52dcc1c316b44b6b34bd71c1e2af': Voice search icon not touch explorable.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user