Merge "Update config when "Show input method" is changed" into lmp-dev
This commit is contained in:
@@ -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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user