Fix subsequent drag-to-open SubMenus
Caused by a timing issue in the dismiss calls.
The framework uses an Animation before performing
the item click after selecting an item. As AppCompat
doesn't use an Animation, the popup is dismissed and
thus null'ed out before onForwardingStopped() has been
called.
This messes up ActionMenuItemView's onForwardingStopped()
impl since it will now return false and make ListPopupWindow
think it's still forwarding. The fix is to just use the
default onForwardingStopped impl which works correctly.
BUG: 18141053
Change-Id: I5f4aef456157d926eb341e47393048ee22eef690
1 file changed