am bb80833f: am a8b1563d: Merge "Fix stale key drawing" into jb-dev

* commit 'bb80833f665182aa30645f957d9f00163aad3b69':
  Fix stale key drawing
main
Tadashi G. Takaoka 2012-05-21 11:52:15 -07:00 committed by Android Git Automerger
commit 28626f9237
2 changed files with 17 additions and 0 deletions

View File

@ -197,6 +197,20 @@ public class Keyboard {
return null;
}
public boolean hasKey(Key aKey) {
if (mKeyCache.containsKey(aKey)) {
return true;
}
for (final Key key : mKeys) {
if (key == aKey) {
mKeyCache.put(key.mCode, key);
return true;
}
}
return false;
}
public static boolean isLetterCode(int code) {
return code >= MINIMUM_LETTER_CODE;
}

View File

@ -487,6 +487,9 @@ public class KeyboardView extends View implements PointerTracker.DrawingProxy {
} else {
// Draw invalidated keys.
for (final Key key : mInvalidatedKeys) {
if (!mKeyboard.hasKey(key)) {
continue;
}
final int x = key.mX + getPaddingLeft();
final int y = key.mY + getPaddingTop();
mInvalidatedKeysRect.set(x, y, x + key.mWidth, y + key.mHeight);