Merge "Bug 5430909 - Overlay action bar should consume hover events"

This commit is contained in:
Adam Powell
2011-10-10 11:19:35 -07:00
committed by Android (Google) Code Review

View File

@@ -118,6 +118,14 @@ public class ActionBarContainer extends FrameLayout {
return true;
}
@Override
public boolean onHoverEvent(MotionEvent ev) {
super.onHoverEvent(ev);
// An action bar always eats hover events.
return true;
}
public void setTabContainer(ScrollingTabContainerView tabView) {
if (mTabContainer != null) {
removeView(mTabContainer);