am bc56e044: Reset keyboard state when loading keyboard

* commit 'bc56e0442586ecfcbd18cbdd138996b17ea79b6b':
  Reset keyboard state when loading keyboard
main
Tadashi G. Takaoka 2011-12-07 01:25:09 -08:00 committed by Android Git Automerger
commit b8185a7ec2
2 changed files with 8 additions and 0 deletions

View File

@ -205,6 +205,7 @@ public class KeyboardSwitcher implements SharedPreferences.OnSharedPreferenceCha
mMainKeyboardId = getKeyboardId(editorInfo, false, false, settingsValues);
mSymbolsKeyboardId = getKeyboardId(editorInfo, true, false, settingsValues);
mSymbolsShiftedKeyboardId = getKeyboardId(editorInfo, true, true, settingsValues);
mState.onLoadKeyboard();
mLayoutSwitchBackSymbols = mResources.getString(R.string.layout_switch_back_symbols);
setKeyboard(getKeyboard(mSavedKeyboardState.getKeyboardId()));
mSavedKeyboardState.restore();

View File

@ -27,6 +27,13 @@ public class KeyboardState {
public KeyboardState() {
}
public void onLoadKeyboard() {
mKeyboardShiftState.setShifted(false);
mKeyboardShiftState.setShiftLocked(false);
mShiftKeyState.onRelease();
mSymbolKeyState.onRelease();
}
public boolean isShiftLocked() {
return mKeyboardShiftState.isShiftLocked();
}