Merge "Update config when "Show input method" is changed" into lmp-dev

This commit is contained in:
Yohei Yukawa
2014-10-13 18:42:48 +00:00
committed by Android (Google) Code Review

View File

@@ -7226,11 +7226,14 @@ public class WindowManagerService extends IWindowManager.Stub
} }
public void updateShowImeWithHardKeyboard() { public void updateShowImeWithHardKeyboard() {
boolean showImeWithHardKeyboard = Settings.Secure.getIntForUser( final boolean showImeWithHardKeyboard = Settings.Secure.getIntForUser(
mContext.getContentResolver(), Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD, 0, mContext.getContentResolver(), Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD, 0,
mCurrentUserId) == 1; mCurrentUserId) == 1;
synchronized (mWindowMap) { synchronized (mWindowMap) {
mShowImeWithHardKeyboard = showImeWithHardKeyboard; if (mShowImeWithHardKeyboard != showImeWithHardKeyboard) {
mShowImeWithHardKeyboard = showImeWithHardKeyboard;
mH.sendEmptyMessage(H.SEND_NEW_CONFIGURATION);
}
} }
} }