We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0f2515 commit 7d09f04Copy full SHA for 7d09f04
core/java/com/android/internal/widget/ActionBarContainer.java
@@ -118,6 +118,14 @@ public boolean onTouchEvent(MotionEvent ev) {
118
return true;
119
}
120
121
+ @Override
122
+ public boolean onHoverEvent(MotionEvent ev) {
123
+ super.onHoverEvent(ev);
124
+
125
+ // An action bar always eats hover events.
126
+ return true;
127
+ }
128
129
public void setTabContainer(ScrollingTabContainerView tabView) {
130
if (mTabContainer != null) {
131
removeView(mTabContainer);
0 commit comments