Remember auto-correction status simply (B1)
This duplicates the functionality in ComposingStateManager at a fraction of the cost. It's not used yet. Change-Id: Ica2607fb2f7c41e11189fcb566e253db8f62596f
This commit is contained in:
parent
89ffb212b4
commit
70852c91dc
1 changed files with 3 additions and 0 deletions
|
@ -235,6 +235,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
|
||||||
|
|
||||||
private final ComposingStateManager mComposingStateManager =
|
private final ComposingStateManager mComposingStateManager =
|
||||||
ComposingStateManager.getInstance();
|
ComposingStateManager.getInstance();
|
||||||
|
private boolean mIsAutoCorrectionIndicatorOn;
|
||||||
|
|
||||||
public final UIHandler mHandler = new UIHandler(this);
|
public final UIHandler mHandler = new UIHandler(this);
|
||||||
|
|
||||||
|
@ -1293,6 +1294,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
|
||||||
// all inputs that do not result in a special state. Each character handling is then
|
// all inputs that do not result in a special state. Each character handling is then
|
||||||
// free to override the state as they see fit.
|
// free to override the state as they see fit.
|
||||||
final int spaceState = mSpaceState;
|
final int spaceState = mSpaceState;
|
||||||
|
if (!mWordComposer.isComposingWord()) mIsAutoCorrectionIndicatorOn = false;
|
||||||
|
|
||||||
// TODO: Consolidate the double space timer, mLastKeyTime, and the space state.
|
// TODO: Consolidate the double space timer, mLastKeyTime, and the space state.
|
||||||
if (primaryCode != Keyboard.CODE_SPACE) {
|
if (primaryCode != Keyboard.CODE_SPACE) {
|
||||||
|
@ -1745,6 +1747,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
|
||||||
+ " -> " + newAutoCorrectionIndicator);
|
+ " -> " + newAutoCorrectionIndicator);
|
||||||
}
|
}
|
||||||
if (mWordComposer.isComposingWord()) {
|
if (mWordComposer.isComposingWord()) {
|
||||||
|
mIsAutoCorrectionIndicatorOn = newAutoCorrectionIndicator;
|
||||||
final CharSequence textWithUnderline =
|
final CharSequence textWithUnderline =
|
||||||
getTextWithUnderline(mWordComposer.getTypedWord());
|
getTextWithUnderline(mWordComposer.getTypedWord());
|
||||||
ic.setComposingText(textWithUnderline, 1);
|
ic.setComposingText(textWithUnderline, 1);
|
||||||
|
|
Loading…
Reference in a new issue