Fixing various issues with the dock.

- Prevent crash due to no overlays in certain device configurations
- Fixing kb crash and adding content description for Apps button

Change-Id: Ie2a2bc29e7b9408a165f93d108fdd803193afc29
This commit is contained in:
Winson Chung
2011-07-21 11:48:43 -07:00
parent f55cd6a46c
commit 4d279d94ad
5 changed files with 30 additions and 16 deletions
@@ -330,16 +330,4 @@ public class BubbleTextView extends TextView implements VisibilityChangedBroadca
}
return true;
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
return FocusHelper.handleBubbleTextViewKeyEvent(this, keyCode, event)
|| super.onKeyDown(keyCode, event);
}
@Override
public boolean onKeyUp(int keyCode, KeyEvent event) {
return FocusHelper.handleBubbleTextViewKeyEvent(this, keyCode, event)
|| super.onKeyUp(keyCode, event);
}
}