am 18e21d58: Remove closing method from KeyboardView

* commit '18e21d58f7c0b5c5c001835c093221c573a841c4':
  Remove closing method from KeyboardView
main
Tadashi G. Takaoka 2013-02-28 22:38:11 +00:00 committed by Android Git Automerger
commit 040b442f3c
3 changed files with 0 additions and 9 deletions

View File

@ -635,15 +635,9 @@ public class KeyboardView extends View {
invalidate(x, y, x + key.mWidth, y + key.mHeight);
}
// TODO: Remove this method.
public void closing() {
mInvalidateAllKeys = true;
}
@Override
protected void onDetachedFromWindow() {
super.onDetachedFromWindow();
closing();
freeOffscreenBuffer();
}
}

View File

@ -1236,13 +1236,11 @@ public final class MainKeyboardView extends KeyboardView implements PointerTrack
mDrawingHandler.cancelAllMessages();
}
@Override
public void closing() {
dismissAllKeyPreviews();
cancelAllMessages();
onDismissMoreKeysPanel();
mMoreKeysKeyboardCache.clear();
super.closing();
}
/**

View File

@ -174,7 +174,6 @@ public class MoreKeysKeyboardView extends KeyboardView implements MoreKeysPanel
@Override
public boolean dismissMoreKeysPanel() {
super.closing();
if (mController == null) return false;
return mController.onDismissMoreKeysPanel();
}