am a9d28030: Merge "Fix NPE on HOVER_EXIT event when not touching a key." into jb-dev

* commit 'a9d28030964c4c99e7292d7dcfc73e1453750bf9':
  Fix NPE on HOVER_EXIT event when not touching a key.
main
Svetoslav Ganov 2012-05-17 20:01:47 -07:00 committed by Android Git Automerger
commit 29948e7a19
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ public class AccessibleKeyboardViewProxy extends AccessibilityDelegateCompat {
case MotionEvent.ACTION_HOVER_EXIT:
// Make sure we're not getting an EXIT event because the user slid
// off the keyboard area, then force a key press.
if (pointInView(x, y)) {
if (pointInView(x, y) && (key != null)) {
getAccessibilityNodeProvider().simulateKeyPress(key);
}
//$FALL-THROUGH$