am dbadee96: Do not create a handler thread for each session
* commit 'dbadee96b6bc385b18377bd8b943e79097853849': Do not create a handler thread for each sessionmain
commit
e2537ed58c
|
@ -130,8 +130,11 @@ public final class InputLogic {
|
|||
// so we try using some heuristics to find out about these and fix them.
|
||||
mConnection.tryFixLyingCursorPosition();
|
||||
cancelDoubleSpacePeriodCountdown();
|
||||
mInputLogicHandler.destroy();
|
||||
mInputLogicHandler = new InputLogicHandler(mLatinIME, this);
|
||||
if (InputLogicHandler.NULL_HANDLER == mInputLogicHandler) {
|
||||
mInputLogicHandler = new InputLogicHandler(mLatinIME, this);
|
||||
} else {
|
||||
mInputLogicHandler.reset();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -142,8 +145,7 @@ public final class InputLogic {
|
|||
mConnection.finishComposingText();
|
||||
}
|
||||
resetComposingState(true /* alsoResetLastComposedWord */);
|
||||
mInputLogicHandler.destroy();
|
||||
mInputLogicHandler = InputLogicHandler.NULL_HANDLER;
|
||||
mInputLogicHandler.reset();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -43,7 +43,7 @@ class InputLogicHandler implements Handler.Callback {
|
|||
// is initialized, though probably only the monkey can actually do this.
|
||||
public static final InputLogicHandler NULL_HANDLER = new InputLogicHandler() {
|
||||
@Override
|
||||
public void destroy() {}
|
||||
public void reset() {}
|
||||
@Override
|
||||
public boolean handleMessage(final Message msg) { return true; }
|
||||
@Override
|
||||
|
@ -75,8 +75,8 @@ class InputLogicHandler implements Handler.Callback {
|
|||
mInputLogic = inputLogic;
|
||||
}
|
||||
|
||||
public void destroy() {
|
||||
mNonUIThreadHandler.getLooper().quit();
|
||||
public void reset() {
|
||||
mNonUIThreadHandler.removeCallbacksAndMessages(null);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue