Merge "Fix Keyboard Theme update when device orientation changed"
commit
7ae00baa87
|
@ -803,7 +803,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||||
// create new display context and re-init keyboard layout with this context.
|
// create new display context and re-init keyboard layout with this context.
|
||||||
final WindowManager wm = getSystemService(WindowManager.class);
|
final WindowManager wm = getSystemService(WindowManager.class);
|
||||||
final int newDisplayId = wm.getDefaultDisplay().getDisplayId();
|
final int newDisplayId = wm.getDefaultDisplay().getDisplayId();
|
||||||
if (mCurDisplayId != newDisplayId) {
|
if (mCurDisplayId != newDisplayId || !mDisplayContext.getResources().getConfiguration()
|
||||||
|
.equals(getResources().getConfiguration())) {
|
||||||
mCurDisplayId = newDisplayId;
|
mCurDisplayId = newDisplayId;
|
||||||
mDisplayContext = createDisplayContext(wm.getDefaultDisplay());
|
mDisplayContext = createDisplayContext(wm.getDefaultDisplay());
|
||||||
mKeyboardSwitcher.updateKeyboardTheme(mDisplayContext);
|
mKeyboardSwitcher.updateKeyboardTheme(mDisplayContext);
|
||||||
|
|
Loading…
Reference in New Issue