[ML29] Reinitialize the subtype at input start
Bug: 11230254 Bug: 17994347 Change-Id: I3476909c4b371d6e94a0d4c35d91e109d639b8d5
This commit is contained in:
parent
544da4a2ea
commit
eaa7efd136
2 changed files with 6 additions and 1 deletions
|
@ -857,6 +857,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||||
// also wouldn't be consuming gesture data.
|
// also wouldn't be consuming gesture data.
|
||||||
mGestureConsumer = GestureConsumer.NULL_GESTURE_CONSUMER;
|
mGestureConsumer = GestureConsumer.NULL_GESTURE_CONSUMER;
|
||||||
mRichImm.clearSubtypeCaches();
|
mRichImm.clearSubtypeCaches();
|
||||||
|
mSubtypeSwitcher.refreshSubtypeInfo();
|
||||||
final KeyboardSwitcher switcher = mKeyboardSwitcher;
|
final KeyboardSwitcher switcher = mKeyboardSwitcher;
|
||||||
switcher.updateKeyboardTheme();
|
switcher.updateKeyboardTheme();
|
||||||
final MainKeyboardView mainKeyboardView = switcher.getMainKeyboardView();
|
final MainKeyboardView mainKeyboardView = switcher.getMainKeyboardView();
|
||||||
|
|
|
@ -117,10 +117,14 @@ public final class SubtypeSwitcher {
|
||||||
final NetworkInfo info = connectivityManager.getActiveNetworkInfo();
|
final NetworkInfo info = connectivityManager.getActiveNetworkInfo();
|
||||||
mIsNetworkConnected = (info != null && info.isConnected());
|
mIsNetworkConnected = (info != null && info.isConnected());
|
||||||
|
|
||||||
onSubtypeChanged(mRichImm.getCurrentRawSubtype());
|
refreshSubtypeInfo();
|
||||||
updateParametersOnStartInputView();
|
updateParametersOnStartInputView();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void refreshSubtypeInfo() {
|
||||||
|
onSubtypeChanged(mRichImm.getCurrentRawSubtype());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Update parameters which are changed outside LatinIME. This parameters affect UI so that they
|
* Update parameters which are changed outside LatinIME. This parameters affect UI so that they
|
||||||
* should be updated every time onStartInputView is called.
|
* should be updated every time onStartInputView is called.
|
||||||
|
|
Loading…
Reference in a new issue