Very simple refactoring
Bug: 8864306 Change-Id: I5c9b118cb6a8eb59efc52d5534b10fcab93182d6main
parent
c34933828e
commit
f712dc9a4f
|
@ -139,13 +139,17 @@ public final class RichInputConnection {
|
|||
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
||||
}
|
||||
|
||||
public void resetCachesUponCursorMove(final int newCursorPosition,
|
||||
final boolean shouldFinishComposition) {
|
||||
mCurrentCursorPosition = newCursorPosition;
|
||||
private void refreshCache() {
|
||||
mComposingText.setLength(0);
|
||||
mCommittedTextBeforeComposingText.setLength(0);
|
||||
final CharSequence textBeforeCursor = getTextBeforeCursor(DEFAULT_TEXT_CACHE_SIZE, 0);
|
||||
if (null != textBeforeCursor) mCommittedTextBeforeComposingText.append(textBeforeCursor);
|
||||
}
|
||||
|
||||
public void resetCachesUponCursorMove(final int newCursorPosition,
|
||||
final boolean shouldFinishComposition) {
|
||||
mCurrentCursorPosition = newCursorPosition;
|
||||
refreshCache();
|
||||
if (null != mIC && shouldFinishComposition) {
|
||||
mIC.finishComposingText();
|
||||
if (ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS) {
|
||||
|
|
Loading…
Reference in New Issue